diff --git a/src/ontology/Makefile b/src/ontology/Makefile index 7491fbc..5ebaf17 100644 --- a/src/ontology/Makefile +++ b/src/ontology/Makefile @@ -1,7 +1,7 @@ # ---------------------------------------- # Makefile for wbls # Generated using ontology-development-kit -# ODK Version: v1.3.1 +# ODK Version: v1.4 # ---------------------------------------- # IMPORTANT: DO NOT EDIT THIS FILE. To override default make goals, use wbls.Makefile instead @@ -15,11 +15,13 @@ # ---------------------------------------- # these can be overwritten on the command line +OBOBASE= http://purl.obolibrary.org/obo URIBASE= http://purl.obolibrary.org/obo ONT= wbls -ONTBASE= $(URIBASE)/$(ONT) +ONTBASE= http://purl.obolibrary.org/obo/wbls EDIT_FORMAT= owl SRC = $(ONT)-edit.$(EDIT_FORMAT) +MAKE_FAST= $(MAKE) IMP=false PAT=false COMP=false MIR=false CATALOG= catalog-v001.xml ROBOT= robot --catalog $(CATALOG) @@ -32,26 +34,29 @@ MIRRORDIR= mirror IMPORTDIR= imports SUBSETDIR= subsets SCRIPTSDIR= ../scripts +UPDATEREPODIR= target SPARQLDIR = ../sparql COMPONENTSDIR = components 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 +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.3.1 +ODK_VERSION_MAKEFILE = v1.4 TODAY ?= $(shell date +%Y-%m-%d) OBODATE ?= $(shell date +'%d:%m:%Y %H:%M') VERSION= $(TODAY) ANNOTATE_ONTOLOGY_VERSION = annotate -V $(ONTBASE)/releases/$(VERSION)/$@ --annotation owl:versionInfo $(VERSION) +ANNOTATE_CONVERT_FILE = annotate --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) convert -f ofn --output $@.tmp.owl && mv $@.tmp.owl $@ OTHER_SRC = ONTOLOGYTERMS = $(TMPDIR)/ontologyterms.txt +EDIT_PREPROCESSED = $(TMPDIR)/$(ONT)-preprocess.owl FORMATS = $(sort owl obo json owl) FORMATS_INCL_TSV = $(sort $(FORMATS) tsv) -RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-simple $(ONT)-base $(ONT)-full) +RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-simple ) # ---------------------------------------- # Top-level targets @@ -66,10 +71,16 @@ all: all_odk all_odk: odkversion test all_assets .PHONY: test -test: odkversion sparql_test robot_reports $(REPORTDIR)/validate_profile_owl2dl_$(ONT).owl.txt - $(ROBOT) reason --input $(SRC) --reasoner ELK --equivalent-classes-allowed asserted-only \ - --exclude-tautologies structural --output test.owl && rm test.owl &&\ - echo "Success" +test: odkversion reason_test sparql_test robot_reports $(REPORTDIR)/validate_profile_owl2dl_$(ONT).owl.txt + echo "Finished running all tests successfully." + +.PHONY: release_diff +release_diff: $(REPORTDIR)/release-diff.md + +.PHONY: reason_test +reason_test: $(EDIT_PREPROCESSED) + $(ROBOT) reason --input $< --reasoner ELK --equivalent-classes-allowed asserted-only \ + --exclude-tautologies structural --output test.owl && rm test.owl .PHONY: odkversion odkversion: @@ -120,6 +131,19 @@ SUBSET_FILES = $(foreach n,$(SUBSET_ROOTS), $(foreach f,$(FORMATS_INCL_TSV), $(n .PHONY: all_subsets all_subsets: $(SUBSET_FILES) +# ---------------------------------------- +# Mapping assets +# ---------------------------------------- + + +MAPPINGS = + +MAPPING_FILES = $(patsubst %, $(MAPPINGDIR)/%.sssom.tsv, $(MAPPINGS)) + +.PHONY: all_mappings +all_mappings: $(MAPPING_FILES) + + # ---------------------------------------- # QC Reports & Utilities # ---------------------------------------- @@ -138,7 +162,7 @@ all_reports: custom_reports robot_reports # ROBOT OWL Profile checking # ---------------------------------------- -# The conversion to functional syntax is necessary to avoid undeclared entity violations. +# The merge step is necessary to avoid undeclared entity violations. $(REPORTDIR)/validate_profile_owl2dl_%.txt: % | $(REPORTDIR) $(TMPDIR) $(ROBOT) merge -i $< convert -f ofn -o $(TMPDIR)/validate.ofn $(ROBOT) validate-profile --profile DL -i $(TMPDIR)/validate.ofn -o $@ || { cat $@ && exit 1; } @@ -156,9 +180,10 @@ validate_profile_%: $(REPORTDIR)/validate_profile_owl2dl_%.txt SPARQL_VALIDATION_QUERIES = $(foreach V,$(SPARQL_VALIDATION_CHECKS),$(SPARQLDIR)/$(V)-violation.sparql) -sparql_test: $(SRC) catalog-v001.xml | $(REPORTDIR) +sparql_test: $(EDIT_PREPROCESSED) catalog-v001.xml | $(REPORTDIR) ifneq ($(SPARQL_VALIDATION_QUERIES),) - $(ROBOT) verify --catalog catalog-v001.xml -i $< --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) + + $(ROBOT) verify --catalog catalog-v001.xml -i $(EDIT_PREPROCESSED) --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) endif # ---------------------------------------- @@ -179,25 +204,32 @@ ASSETS = \ $(IMPORT_FILES) \ $(MAIN_FILES) \ $(REPORT_FILES) \ - $(SUBSET_FILES) + $(SUBSET_FILES) \ + $(MAPPING_FILES) RELEASE_ASSETS = \ $(MAIN_FILES) \ $(SUBSET_FILES) .PHONY: all_assets -all_assets: $(ASSETS) +all_assets: $(ASSETS) .PHONY: show_assets show_assets: echo $(ASSETS) du -sh $(ASSETS) +check_rdfxml_%: % + @check-rdfxml $< + +.PHONY: check_rdfxml_assets +check_rdfxml_assets: $(foreach product,$(MAIN_PRODUCTS),check_rdfxml_$(product).owl) + # ---------------------------------------- # Release Management # ---------------------------------------- -CLEANFILES=$(MAIN_FILES) $(SRCMERGED) +CLEANFILES=$(MAIN_FILES) $(SRCMERGED) $(EDIT_PREPROCESSED) # This should be executed by the release manager whenever time comes to make a release. # It will ensure that all assets/files are fresh, and will copy to release folder @@ -218,6 +250,14 @@ prepare_initial_release: all_assets prepare_release_fast: $(MAKE) prepare_release IMP=false PAT=false MIR=false COMP=false +CURRENT_RELEASE=$(ONTBASE).owl + +$(TMPDIR)/current-release.owl: + wget $(CURRENT_RELEASE) -O $@ + +$(REPORTDIR)/release-diff.md: $(ONT).owl $(TMPDIR)/current-release.owl + $(ROBOT) diff --labels true --left $(TMPDIR)/current-release.owl --right $(ONT).owl -f markdown -o $@ + # ------------------------ # Imports: Seeding system # ------------------------ @@ -226,10 +266,13 @@ prepare_release_fast: IMPORTSEED=$(TMPDIR)/seed.txt PRESEED=$(TMPDIR)/pre_seed.txt -$(SRCMERGED): $(SRC) $(OTHER_SRC) +$(SRCMERGED): $(EDIT_PREPROCESSED) $(OTHER_SRC) $(ROBOT) remove --input $< --select imports --trim false \ merge $(patsubst %, -i %, $(OTHER_SRC)) -o $@ +$(EDIT_PREPROCESSED): $(SRC) + $(ROBOT) convert --input $< --format ofn --output $@ + $(PRESEED): $(SRCMERGED) $(ROBOT) query -f csv -i $< --query ../sparql/terms.sparql $@.tmp &&\ cat $@.tmp | sort | uniq > $@ @@ -269,7 +312,7 @@ $(IMPORTDIR)/%_import.owl: $(MIRRORDIR)/%.owl $(IMPORTDIR)/%_terms_combined.txt if [ $(IMP) = true ]; then $(ROBOT) query -i $< --update ../sparql/preprocess-module.ru \ extract -T $(IMPORTDIR)/$*_terms_combined.txt --force true --copy-ontology-annotations true --individuals include --method BOT \ query --update ../sparql/inject-subset-declaration.ru --update ../sparql/inject-synonymtype-declaration.ru --update ../sparql/postprocess-module.ru \ - annotate --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) --output $@.tmp.owl && mv $@.tmp.owl $@; fi + $(ANNOTATE_CONVERT_FILE); fi .PRECIOUS: $(IMPORTDIR)/%_import.owl @@ -308,7 +351,7 @@ IMP_LARGE=true # Global parameter to bypass handling of large imports .PHONY: mirror-ro .PRECIOUS: $(MIRRORDIR)/ro.owl mirror-ro: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(URIBASE)/ro.owl --create-dirs -o $(MIRRORDIR)/ro.owl --retry 4 --max-time 200 &&\ + 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 @@ -338,7 +381,7 @@ $(SUBSETDIR)/%.obo: $(SUBSETDIR)/%.owl $(SUBSETDIR)/%.json: $(SUBSETDIR)/%.owl $(ROBOT) convert --input $< --check false -f json -o $@.tmp.json &&\ - jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json + mv $@.tmp.json $@ # --------------------------------------------- @@ -349,7 +392,7 @@ SPARQL_EXPORTS_ARGS = $(foreach V,$(SPARQL_EXPORTS),-s $(SPARQLDIR)/$(V).sparql # This combines all into one single command .PHONY: custom_reports -custom_reports: $(SRC) | $(REPORTDIR) +custom_reports: $(EDIT_PREPROCESSED) | $(REPORTDIR) ifneq ($(SPARQL_EXPORTS_ARGS),) $(ROBOT) query -f tsv --use-graphs true -i $< $(SPARQL_EXPORTS_ARGS) endif @@ -364,19 +407,19 @@ $(ONT)-base.obo: $(ONT)-base.owl $(ONT)-base.json: $(ONT)-base.owl $(ROBOT) annotate --input $< --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ convert --check false -f json -o $@.tmp.json &&\ - jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json + mv $@.tmp.json $@ $(ONT)-full.obo: $(ONT)-full.owl $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo $(ONT)-full.json: $(ONT)-full.owl $(ROBOT) annotate --input $< --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ convert --check false -f json -o $@.tmp.json &&\ - jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json + mv $@.tmp.json $@ $(ONT)-simple.obo: $(ONT)-simple.owl $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo $(ONT)-simple.json: $(ONT)-simple.owl $(ROBOT) annotate --input $< --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ convert --check false -f json -o $@.tmp.json &&\ - jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json + mv $@.tmp.json $@ # ---------------------------------------- # Release artefacts: main release artefacts # ---------------------------------------- @@ -387,40 +430,43 @@ $(ONT).owl: $(ONT)-full.owl $(ONT).obo: $(ONT).owl $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo -$(ONT).json: $(ONT)-full.owl +$(ONT).json: $(ONT).owl $(ROBOT) annotate --input $< --ontology-iri $(URIBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ - convert --check false -f json -o $@.tmp.json && \ - jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json + convert --check false -f json -o $@.tmp.json &&\ + mv $@.tmp.json $@ # ----------------------------------------------------- # Release artefacts: variants (base, full, simple, etc) # ----------------------------------------------------- SHARED_ROBOT_COMMANDS = -$(ONTOLOGYTERMS): $(SRC) $(OTHER_SRC) - touch $(ONTOLOGYTERMS) && \ - $(ROBOT) query --use-graphs true -f csv -i $< --query ../sparql/wbls_terms.sparql $@ +$(ONTOLOGYTERMS): $(SRCMERGED) + $(ROBOT) query -f csv -i $< --query ../sparql/wbls_terms.sparql $@ -# base: OTHER sources of interest, such as definitions owl -$(ONT)-base.owl: $(SRC) $(OTHER_SRC) - $(ROBOT) remove --input $< --select imports --trim false \ - merge $(patsubst %, -i %, $(OTHER_SRC)) \ - $(SHARED_ROBOT_COMMANDS) annotate --link-annotation http://purl.org/dc/elements/1.1/type http://purl.obolibrary.org/obo/IAO_8000001 \ +# ROBOT pipeline that merges imports, including components. +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) \ + $(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) \ --output $@.tmp.owl && mv $@.tmp.owl $@ - -# Full: The full artefacts with imports merged, reasoned -$(ONT)-full.owl: $(SRC) $(OTHER_SRC) $(IMPORT_FILES) - $(ROBOT) merge --input $< \ +# Full: The full artefacts with imports merged, reasoned. +$(ONT)-full.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) $(IMPORT_FILES) + $(ROBOT_RELEASE_IMPORT_MODE) \ reason --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural \ relax \ reduce -r ELK \ $(SHARED_ROBOT_COMMANDS) annotate --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) --output $@.tmp.owl && mv $@.tmp.owl $@ - # foo-simple: (edit->reason,relax,reduce,drop imports, drop every axiom which contains an entity outside the "namespaces of interest") # drop every axiom: filter --term-file keep_terms.txt --trim true # remove --select imports --trim false -$(ONT)-simple.owl: $(SRC) $(OTHER_SRC) $(SIMPLESEED) $(IMPORT_FILES) - $(ROBOT) merge --input $< $(patsubst %, -i %, $(OTHER_SRC)) \ +$(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 \ relax \ remove --axioms equivalent \ @@ -433,10 +479,19 @@ $(ONT)-simple.owl: $(SRC) $(OTHER_SRC) $(SIMPLESEED) $(IMPORT_FILES) # Debugging Tools # ---------------------------------------- -explain_unsat: $(SRC) - $(ROBOT) explain -i $(SRC) -M unsatisfiability --unsatisfiable random:10 --explanation $(TMPDIR)/$@.md +explain_unsat: $(EDIT_PREPROCESSED) + $(ROBOT) explain -i $< -M unsatisfiability --unsatisfiable random:10 --explanation $(TMPDIR)/$@.md + + +RELEASE_ASSETS_AFTER_RELEASE=$(foreach n,$(RELEASE_ASSETS), ../../$(n)) +GHVERSION=v$(VERSION) +.PHONY: public_release +public_release: + @test $(GHVERSION) + ls -alt $(RELEASE_ASSETS_AFTER_RELEASE) + gh release create $(GHVERSION) --title "$(VERSION) Release" --draft $(RELEASE_ASSETS_AFTER_RELEASE) --generate-notes # ---------------------------------------- # General Validation @@ -479,6 +534,7 @@ update_repo: 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)/* rm -f $(CLEANFILES) .PHONY: help @@ -500,11 +556,12 @@ Core commands: * odkversion: Show the current version of the ODK Makefile and ROBOT. * clean: Delete all temporary files * help: Print ODK Usage information +* public_release: Uploads the release file to a release management system, such as GitHub releases. Must be configured. Imports management: * refresh-imports: Refresh all imports and mirrors. -* refresh-components: Refresh all components. +* recreate-components: Recreate all components. * no-mirror-refresh-imports: Refresh all imports without downloading mirrors. * refresh-imports-excluding-large: Refresh all imports and mirrors, but skipping the ones labelled as 'is_large'. * refresh-%: Refresh a single import, i.e. refresh-go will refresh 'imports/go_import.owl'. @@ -517,6 +574,7 @@ Editor utilities: * 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. +* release_diff: Create a diff between the current release and the new release Additional build commands (advanced users) * all: Run the entire pipeline (like prepare_release), but without copying the release files to the release directory. @@ -524,10 +582,12 @@ Additional build commands (advanced users) * custom_reports: Generate all custom sparql reports you have configured in your wbls-odk.yaml file. * all_assets: Build all assets * show_assets: Print a list of all assets that would be build by the release pipeline +* all_mappings: Update all SSSOM mapping sets Additional QC commands (advanced users) * robot_reports: Run all configured ROBOT reports * validate_profile_%: Run an OWL2 DL profile validation check, for example validate_profile_wbls-edit.owl. +* reason_test: Run a basic reasoning test Examples: * sh run.sh make IMP=false prepare_release diff --git a/src/ontology/imports/ro_import.owl b/src/ontology/imports/ro_import.owl index 8261218..7fff975 100644 --- a/src/ontology/imports/ro_import.owl +++ b/src/ontology/imports/ro_import.owl @@ -1,1616 +1,1053 @@ - - - - - - 2023-01-03 - - +Prefix(:=) +Prefix(owl:=) +Prefix(rdf:=) +Prefix(xml:=) +Prefix(xsd:=) +Prefix(rdfs:=) + + +Ontology( + +Annotation( ) +Annotation(owl:versionInfo "2023-04-11") + +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(Class()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(ObjectProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty(rdfs:comment)) +Declaration(AnnotationProperty(rdfs:label)) +Declaration(AnnotationProperty()) +Declaration(AnnotationProperty()) +############################ +# Annotation Properties +############################ + +# Annotation Property: (definition) + +AnnotationAssertion(rdfs:label "definition") + +# Annotation Property: (term replaced by) + +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "term replaced by"@en) + +# Annotation Property: () + +SubAnnotationPropertyOf( ) + +# Annotation Property: (is a defining property chain axiom) + +AnnotationAssertion( "If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL") +AnnotationAssertion(rdfs:label "is a defining property chain axiom") + +# Annotation Property: (is a defining property chain axiom where second argument is reflexive) + +AnnotationAssertion( "If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R.") +AnnotationAssertion(rdfs:label "is a defining property chain axiom where second argument is reflexive") + +# Annotation Property: () + +SubAnnotationPropertyOf( ) + +# Annotation Property: () + +SubAnnotationPropertyOf( ) + +# Annotation Property: () + +SubAnnotationPropertyOf( ) + +# Annotation Property: () + +SubAnnotationPropertyOf( ) + +# Annotation Property: () + +SubAnnotationPropertyOf( ) + +# Annotation Property: (has_broad_synonym) + +AnnotationAssertion(rdfs:label "has_broad_synonym") + +# Annotation Property: (database_cross_reference) + +AnnotationAssertion(rdfs:label "database_cross_reference") + +# Annotation Property: (has_exact_synonym) + +AnnotationAssertion(rdfs:label "has_exact_synonym") + +# Annotation Property: (has_narrow_synonym) + +AnnotationAssertion(rdfs:label "has_narrow_synonym") + +# Annotation Property: (has_obo_format_version) + +AnnotationAssertion(rdfs:label "has_obo_format_version") + +# Annotation Property: (has_related_synonym) + +AnnotationAssertion(rdfs:label "has_related_synonym") + + +############################ +# Object Properties +############################ + +# Object Property: (part of) + +AnnotationAssertion( "is part of"@en) +AnnotationAssertion( "my brain is part of my body (continuant parthood, two material entities)"@en) +AnnotationAssertion( "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"@en) +AnnotationAssertion( "this day is part of this year (occurrent parthood)"@en) +AnnotationAssertion( "a core relation that holds between a part and its whole"@en) +AnnotationAssertion( "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."@en) +AnnotationAssertion( "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en) +AnnotationAssertion( "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - definition - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - term replaced by - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL - is a defining property chain axiom - - - - - - - - If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R. - is a defining property chain axiom where second argument is reflexive - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - has_broad_synonym - - - - - - - - database_cross_reference - - - - - - - - has_exact_synonym - - - - - - - - has_narrow_synonym - - - - - - - - has_obo_format_version - - - - - - - - has_related_synonym - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - is part of - my brain is part of my body (continuant parthood, two material entities) - my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity) - this day is part of this year (occurrent parthood) - a core relation that holds between a part and its whole - Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other. - Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/ - Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) - -A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'. - part_of - - - - - - - - - - - - - part of - - - http://www.obofoundry.org/ro/#OBO_REL:part_of - - - - - - - - - - has part - my body has part my brain (continuant parthood, two material entities) - my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity) - this year has part this day (occurrent parthood) - a core relation that holds between a whole and its part - Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part. - Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/ - Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) - -A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'. - has_part - - - - - has part - - - - - - - - - - - - - - - - - preceded by - x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point. - An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other. - is preceded by - preceded_by - http://www.obofoundry.org/ro/#OBO_REL:preceded_by - - preceded by - - - - - - - - - - - - - - - - precedes - x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point. - - precedes - - - - - - - - - - - inheres in - this fragility is a characteristic of this vase - this red color is a characteristic of this apple - a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence. - inheres_in - - Note that this relation was previously called "inheres in", but was changed to be called "characteristic of" because BFO2 uses "inheres in" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing. - characteristic of - - - - - - - - - - bearer of - this apple is bearer of this red color - this vase is bearer of this fragility - Inverse of characteristic_of - A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist. - bearer_of - is bearer of - - has characteristic - - - - - - - - - - - participates in - this blood clot participates in this blood coagulation - this input material (or this output material) participates in this process - this investigator participates in this investigation - a relation between a continuant and a process, in which the continuant is somehow involved in the process - participates_in - participates in - - - - - - - - - - - - - - has participant - this blood coagulation has participant this blood clot - this investigation has participant this investigator - this process has participant this input material (or this output material) - a relation between a process and a continuant, in which the continuant is somehow involved in the process - 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 - - - - - - - - - - - this catalysis function is a function of this enzyme - a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence - A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists. - function_of - is function of - This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. - function of - - - - - - - - - - this red color is a quality of this apple - a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence - A quality inheres in its bearer at all times for which the quality exists. - is quality of - quality_of - This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. - quality of - - - - - - - - - - this investigator role is a role of this person - a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence - A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists. - is role of - role_of - This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. - role of - - - - - - - - - - - this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function) - a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence - A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists. - has_function - has function - - - - - - - - - - this apple has quality this red color - a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence - A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist. - has_quality - has quality - - - - - - - - - - - this person has role this investigator role (more colloquially: this person has this role of investigator) - a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence - A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists. - has_role - has role - - - - - - - - - - - - a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence - has disposition - - - - - - - - - inverse of has disposition - - This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. - disposition of - - - - - - - - - - A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B. - dos - 2017-05-24T09:30:46Z - has regulatory component activity - - - - - - - - - - A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B. - dos - 2017-05-24T09:31:01Z - By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'. - has negative regulatory component activity - - - - - - - - - - A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B. - dos - 2017-05-24T09:31:17Z - By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'. - has positive regulatory component activity - - - - - - - - - dos - 2017-05-24T09:44:33Z - A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B. - has component activity - - - - - - - - - - - w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type. - dos - 2017-05-24T09:49:21Z - has component process - - - - - - - - - - dos - 2017-09-17T13:52:24Z - Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2. - directly regulated by - - - - - Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2. - GOC:dos - - - - - - - - - - Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1. - dos - 2017-09-17T13:52:38Z - directly negatively regulated by - - - - - Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1. - GOC:dos - - - - - - - - - - Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1. - dos - 2017-09-17T13:52:47Z - directly positively regulated by - - - - - Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1. - GOC:dos - - - - - - - - - - A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity. - dos - 2017-09-22T14:14:36Z - This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations. - has effector activity - - - - - A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity. - GOC:dos - - - - - - - - - - David Osumi-Sutherland - - X ends_after Y iff: end(Y) before_or_simultaneous_with end(X) - ends after - - - - - - - - - - David Osumi-Sutherland - starts_at_end_of - X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y) - immediately preceded by - - - - - - - - - David Osumi-Sutherland - ends_at_start_of - meets - - - X immediately_precedes_Y iff: end(X) simultaneous_with start(Y) - immediately precedes - - - - - - - - - - - - - - - - - - - - - - - - - - - x overlaps y if and only if there exists some z such that x has part z and z part of y - http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y) - - - - - overlaps - - - - - - - - - true - - - - - - - - - - w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type. - The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity. - For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit. - - - has component - - - - - - - - - - - - - - - x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y - Chris Mungall - David Osumi-Sutherland - Melissa Haendel - Terry Meehan - This is the transitive form of the develops from relation - develops from - - - - - - - - - - - - - inverse of develops from - Chris Mungall - David Osumi-Sutherland - Terry Meehan - - develops into - - - - - - - - - - - - - - - - - - - - - p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q. - Chris Mungall - David Hill - Tanya Berardini - - GO - Regulation precludes parthood; the regulatory process may not be within the regulated process. - regulates (processual) - false - - - - regulates - - - - - - - - - - - p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q. - Chris Mungall - - negatively regulates (process to process) - - - - - negatively regulates - - - - - - - - - - - - - - - - p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q. - Chris Mungall - - positively regulates (process to process) - - - - - positively regulates - - - - - - - - - - - mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974) - osteoclast SubClassOf 'capable of' some 'bone resorption' - A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. - Chris Mungall - has function realized in - - - For compatibility with BFO, this relation has a shortcut definition in which the expression "capable of some P" expands to "bearer_of (some realized_by only P)". - - capable of - - - - - - - - - - - - - - c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p. - Chris Mungall - has function in - capable of part of - - - - - - - - - - true - - - - - - - - - - - Chris Mungall - - Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends. - https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1 - - A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations. - temporally related to - - - - - - - - - - - - p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p. - Chris Mungall - consumes - - - - - has input - - - - - - - - - - - - - - - - Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong] - - x has developmental contribution from y iff x has some part z such that z develops from y - Chris Mungall - has developmental contribution from - - - - - - - - - - - - - - - inverse of has developmental contribution from - Chris Mungall - - developmentally contributes to - - - - - - - - - - - - - Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p - false - Chris Mungall - In general you should not use this relation to make assertions - use one of the more specific relations below this one - This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from - developmentally preceded by - - - - - - - - - - - - - A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision. - c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes. - - acts upstream of - - - - - - - - - - - - - - A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway. - c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process. - affects - - acts upstream of or within - - - - - - - - - - - Inverse of developmentally preceded by - Chris Mungall - developmentally succeeded by - - - - - - - - - - p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q. - - cjm - - - holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y - causally upstream of, positive effect - - - - - - - - - - p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q. - - cjm - - - causally upstream of, negative effect - - - - - - - - - - - - - - - - - q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w. - Because part_of is transitive, inheres in is a sub-relation of characteristic of part of - Chris Mungall - inheres in part of - - - characteristic of part of - - - - - - - - - - true - - - - - - - - A mereological relationship or a topological relationship - Chris Mungall - Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships - - mereotopologically related to - - - - - - - - A relationship that holds between entities participating in some developmental process (GO:0032502) - Chris Mungall - Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development - developmentally related to - - - - - - - - - - - - - - - - - - a particular instances of akt-2 enables some instance of protein kinase activity - c enables p iff c is capable of p and c acts to execute p. - Chris Mungall - catalyzes - executes - has - is catalyzing - is executing - This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized. - - enables - - - - - - - - A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities. - Chris Mungall - This is a grouping relation that collects relations used for the purpose of connecting structure and function - functionally related to - - - - - - - - - - - - - this relation holds between c and p when c is part of some c', and c' is capable of p. - Chris Mungall - false - part of structure that is capable of - - - - - - - - - true - - - - - - - - - - - - - - - - - - c involved_in p if and only if c enables some process p', and p' is part of p - Chris Mungall - actively involved in - enables part of - involved in - - - - - - - - - - - inverse of enables - Chris Mungall - - enabled by - - - - - - - - - - - - inverse of regulates - Chris Mungall - regulated by (processual) - - regulated by - - - - - - - - - inverse of negatively regulates - Chris Mungall - - negatively regulated by - - - - - - - - - inverse of positively regulates - Chris Mungall - - positively regulated by - - - - - - - - - - inverse of has input - Chris Mungall - - - input of - - - - - - - - - - - - x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction). - Chris Mungall - has developmental potential involving - - - - - - - - - - x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y - Chris Mungall - has potential to developmentally contribute to - - - - - - - - - - x has the potential to develop into y iff x develops into y or if x is capable of developing into y - Chris Mungall - has potential to develop into - - - - - - - - - - x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y - Chris Mungall - has potential to directly develop into - - - - - - - - - - - - inverse of upstream of - Chris Mungall - causally downstream of - - - - - - - - - - - - Chris Mungall - immediately causally downstream of - - - - - - - - - - - - - - - - - - - - - - - - - - - p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q. - Chris Mungall - indirectly activates - - indirectly positively regulates - - - - - - - - - - - - - - - - - - - - - - - p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q. - Chris Mungall - indirectly inhibits - - indirectly negatively regulates - - - - - - - - relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause. - This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents. +A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'."@en) +AnnotationAssertion( "part_of"@en) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "part of"@en) +AnnotationAssertion(rdfs:seeAlso ) +AnnotationAssertion(rdfs:seeAlso ) +AnnotationAssertion(rdfs:seeAlso "http://www.obofoundry.org/ro/#OBO_REL:part_of") +SubObjectPropertyOf( ) +InverseObjectProperties( ) +TransitiveObjectProperty() + +# Object Property: (has part) + +AnnotationAssertion( "has part"@en) +AnnotationAssertion( "my body has part my brain (continuant parthood, two material entities)"@en) +AnnotationAssertion( "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en) +AnnotationAssertion( "this year has part this day (occurrent parthood)"@en) +AnnotationAssertion( "a core relation that holds between a whole and its part"@en) +AnnotationAssertion( "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."@en) +AnnotationAssertion( "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en) +AnnotationAssertion( "Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) + +A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'."@en) +AnnotationAssertion( "has_part"@en) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has part"@en) +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (preceded by) + +AnnotationAssertion( "preceded by"@en) +AnnotationAssertion( "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."@en) +AnnotationAssertion( "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."@en) +AnnotationAssertion( "is preceded by"@en) +AnnotationAssertion( "preceded_by"@en) +AnnotationAssertion( "http://www.obofoundry.org/ro/#OBO_REL:preceded_by") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "preceded by"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +TransitiveObjectProperty() +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (precedes) + +AnnotationAssertion( "precedes"@en) +AnnotationAssertion( "x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "precedes"@en) +SubObjectPropertyOf( ) +TransitiveObjectProperty() +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (characteristic of) + +AnnotationAssertion( "inheres in"@en) +AnnotationAssertion( "this fragility is a characteristic of this vase"@en) +AnnotationAssertion( "this red color is a characteristic of this apple"@en) +AnnotationAssertion( "a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."@en) +AnnotationAssertion( "inheres_in"@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.") +AnnotationAssertion(rdfs:label "characteristic of"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +FunctionalObjectProperty() + +# Object Property: (has characteristic) + +AnnotationAssertion( "bearer of"@en) +AnnotationAssertion( "this apple is bearer of this red color"@en) +AnnotationAssertion( "this vase is bearer of this fragility"@en) +AnnotationAssertion( "Inverse of characteristic_of"@en) +AnnotationAssertion( "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."@en) +AnnotationAssertion( "bearer_of"@en) +AnnotationAssertion( "is bearer of"@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has characteristic"@en) +InverseFunctionalObjectProperty() +ObjectPropertyRange( ) + +# Object Property: (participates in) + +AnnotationAssertion( "participates in"@en) +AnnotationAssertion( "this blood clot participates in this blood coagulation"@en) +AnnotationAssertion( "this input material (or this output material) participates in this process"@en) +AnnotationAssertion( "this investigator participates in this investigation"@en) +AnnotationAssertion( "a relation between a continuant and a process, in which the continuant is somehow involved in the process"@en) +AnnotationAssertion( "participates_in"@en) +AnnotationAssertion(rdfs:label "participates in"@en) +InverseObjectProperties( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (has participant) + +AnnotationAssertion( "has participant"@en) +AnnotationAssertion( "this blood coagulation has participant this blood clot"@en) +AnnotationAssertion( "this investigation has participant this investigator"@en) +AnnotationAssertion( "this process has participant this input material (or this output material)"@en) +AnnotationAssertion( "a relation between a process and a continuant, in which the continuant is somehow involved in the process"@en) +AnnotationAssertion( "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."@en) +AnnotationAssertion( "has_participant"@en) +AnnotationAssertion( "http://www.obofoundry.org/ro/#OBO_REL:has_participant") +AnnotationAssertion(rdfs:label "has participant"@en) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (function of) + +AnnotationAssertion( "this catalysis function is a function of this enzyme"@en) +AnnotationAssertion( "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"@en) +AnnotationAssertion( "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."@en) +AnnotationAssertion( "function_of"@en) +AnnotationAssertion( "is function of"@en) +AnnotationAssertion(rdfs:comment "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.") +AnnotationAssertion(rdfs:label "function of"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +ObjectPropertyDomain( ) + +# Object Property: (quality of) + +AnnotationAssertion( "this red color is a quality of this apple"@en) +AnnotationAssertion( "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"@en) +AnnotationAssertion( "A quality inheres in its bearer at all times for which the quality exists."@en) +AnnotationAssertion( "is quality of"@en) +AnnotationAssertion( "quality_of"@en) +AnnotationAssertion(rdfs:comment "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.") +AnnotationAssertion(rdfs:label "quality of"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (role of) + +AnnotationAssertion( "this investigator role is a role of this person"@en) +AnnotationAssertion( "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"@en) +AnnotationAssertion( "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."@en) +AnnotationAssertion( "is role of"@en) +AnnotationAssertion( "role_of"@en) +AnnotationAssertion(rdfs:comment "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.") +AnnotationAssertion(rdfs:label "role of"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (has function) + +AnnotationAssertion( "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"@en) +AnnotationAssertion( "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"@en) +AnnotationAssertion( "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."@en) +AnnotationAssertion( "has_function"@en) +AnnotationAssertion(rdfs:label "has function"@en) +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (has quality) + +AnnotationAssertion( "this apple has quality this red color"@en) +AnnotationAssertion( "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"@en) +AnnotationAssertion( "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."@en) +AnnotationAssertion( "has_quality"@en) +AnnotationAssertion(rdfs:label "has quality"@en) +SubObjectPropertyOf( ) +ObjectPropertyRange( ) + +# Object Property: (has role) + +AnnotationAssertion( "this person has role this investigator role (more colloquially: this person has this role of investigator)"@en) +AnnotationAssertion( "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"@en) +AnnotationAssertion( "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."@en) +AnnotationAssertion( "has_role"@en) +AnnotationAssertion(rdfs:label "has role"@en) +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (has disposition) + +AnnotationAssertion( "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"@en) +AnnotationAssertion(rdfs:label "has disposition"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (disposition of) + +AnnotationAssertion( "inverse of has disposition") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.") +AnnotationAssertion(rdfs:label "disposition of"@en) +SubObjectPropertyOf( ) + +# Object Property: (has regulatory component activity) + +AnnotationAssertion( "A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-05-24T09:30:46Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "has regulatory component activity") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (has negative regulatory component activity) + +AnnotationAssertion( "A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-05-24T09:31:01Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:comment "By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'.") +AnnotationAssertion(rdfs:label "has negative regulatory component activity") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (has positive regulatory component activity) + +AnnotationAssertion( "A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-05-24T09:31:17Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:comment "By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'.") +AnnotationAssertion(rdfs:label "has positive regulatory component activity") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (has component activity) + +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-05-24T09:44:33Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:comment "A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B.") +AnnotationAssertion(rdfs:label "has component activity") +SubObjectPropertyOf( ) + +# Object Property: (has component process) + +AnnotationAssertion( "w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-05-24T09:49:21Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "has component process") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (directly regulated by) + +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-09-17T13:52:24Z"^^xsd:dateTime) +AnnotationAssertion(Annotation( "GOC:dos") rdfs:comment "Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2.") +AnnotationAssertion(rdfs:label "directly regulated by") +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (directly negatively regulated by) + +AnnotationAssertion(Annotation( "GOC:dos") "Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-09-17T13:52:38Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "directly negatively regulated by") +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (directly positively regulated by) + +AnnotationAssertion(Annotation( "GOC:dos") "Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-09-17T13:52:47Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "directly positively regulated by") +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (has effector activity) + +AnnotationAssertion(Annotation( "GOC:dos") "A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.") +AnnotationAssertion( "dos") +AnnotationAssertion( "2017-09-22T14:14:36Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:comment "This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations.") +AnnotationAssertion(rdfs:label "has effector activity") +SubObjectPropertyOf( ) +FunctionalObjectProperty() + +# Object Property: (ends after) + +AnnotationAssertion( "David Osumi-Sutherland") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)"@en) +AnnotationAssertion(rdfs:label "ends after"@en) +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (immediately preceded by) + +AnnotationAssertion( "David Osumi-Sutherland") +AnnotationAssertion( "starts_at_end_of") +AnnotationAssertion(rdfs:comment "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)"@en) +AnnotationAssertion(rdfs:label "immediately preceded by"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (immediately precedes) + +AnnotationAssertion( ) +AnnotationAssertion( "David Osumi-Sutherland") +AnnotationAssertion( "ends_at_start_of") +AnnotationAssertion( "meets") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "X immediately_precedes_Y iff: end(X) simultaneous_with start(Y)"@en) +AnnotationAssertion(rdfs:label "immediately precedes"@en) +SubObjectPropertyOf( ) + +# Object Property: (overlaps) + +AnnotationAssertion( ) +AnnotationAssertion( "x overlaps y if and only if there exists some z such that x has part z and z part of y") +AnnotationAssertion( "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "overlaps"@en) +SubObjectPropertyOf( ) +SymmetricObjectProperty() + +# Object Property: (has component) + +AnnotationAssertion( ) +AnnotationAssertion( "w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.") +AnnotationAssertion( "The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity.") +AnnotationAssertion( "For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit."@en) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has component"@en) +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) + +# Object Property: (develops from) + +AnnotationAssertion( ) +AnnotationAssertion( "x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "This is the transitive form of the develops from relation") +AnnotationAssertion(rdfs:label "develops from"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +TransitiveObjectProperty() +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (develops into) + +AnnotationAssertion( ) +AnnotationAssertion( "inverse of develops from") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "develops into"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (regulates) + +AnnotationAssertion( "p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "GO") +AnnotationAssertion( "Regulation precludes parthood; the regulatory process may not be within the regulated process.") +AnnotationAssertion( "regulates (processual)") +AnnotationAssertion( "false"^^xsd:boolean) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "regulates"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +TransitiveObjectProperty() +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (negatively regulates) + +AnnotationAssertion( "p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "negatively regulates (process to process)") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "negatively regulates"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (positively regulates) + +AnnotationAssertion( "p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "positively regulates (process to process)") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "positively regulates"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +TransitiveObjectProperty() + +# Object Property: (capable of) + +AnnotationAssertion( "mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974)") +AnnotationAssertion( "osteoclast SubClassOf 'capable of' some 'bone resorption'") +AnnotationAssertion( "A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ") +AnnotationAssertion( ) +AnnotationAssertion( "has function realized in") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "For compatibility with BFO, this relation has a shortcut definition in which the expression \"capable of some P\" expands to \"bearer_of (some realized_by only P)\".") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "capable of"@en) +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (capable of part of) + +AnnotationAssertion( "c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p.") +AnnotationAssertion( ) +AnnotationAssertion( "has function in") +AnnotationAssertion(rdfs:label "capable of part of"@en) +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (temporally related to) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends.") +AnnotationAssertion( "https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1"^^xsd:anyURI) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations.") +AnnotationAssertion(rdfs:label "temporally related to"@en) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (has input) + +AnnotationAssertion( ) +AnnotationAssertion( "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.") +AnnotationAssertion( ) +AnnotationAssertion( "consumes") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has input"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +ObjectPropertyDomain( ) + +# Object Property: (has developmental contribution from) + +AnnotationAssertion( "Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong]") +AnnotationAssertion( ) +AnnotationAssertion( "x has developmental contribution from y iff x has some part z such that z develops from y"@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has developmental contribution from"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (developmentally contributes to) + +AnnotationAssertion( ) +AnnotationAssertion( "inverse of has developmental contribution from") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "developmentally contributes to"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (developmentally preceded by) + +AnnotationAssertion( ) +AnnotationAssertion( "Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p") +AnnotationAssertion( "false"^^xsd:boolean) +AnnotationAssertion( ) +AnnotationAssertion( "In general you should not use this relation to make assertions - use one of the more specific relations below this one") +AnnotationAssertion(rdfs:comment "This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from") +AnnotationAssertion(rdfs:label "developmentally preceded by"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (acts upstream of) + +AnnotationAssertion( "A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision.") +AnnotationAssertion( "c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "acts upstream of") +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) + +# Object Property: (acts upstream of or within) + +AnnotationAssertion( "A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway.") +AnnotationAssertion( "c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.") +AnnotationAssertion( "affects") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "acts upstream of or within") +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) + +# Object Property: (developmentally succeeded by) + +AnnotationAssertion( ) +AnnotationAssertion( "Inverse of developmentally preceded by") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "developmentally succeeded by"@en) +SubObjectPropertyOf( ) + +# Object Property: (causally upstream of, positive effect) + +AnnotationAssertion( "p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:comment "holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y") +AnnotationAssertion(rdfs:label "causally upstream of, positive effect") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (causally upstream of, negative effect) + +AnnotationAssertion( "p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "causally upstream of, negative effect") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (characteristic of part of) + +AnnotationAssertion( "q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w.") +AnnotationAssertion( "Because part_of is transitive, inheres in is a sub-relation of characteristic of part of") +AnnotationAssertion( ) +AnnotationAssertion( "inheres in part of") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "characteristic of part of"@en) +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) + +# Object Property: (mereotopologically related to) + +AnnotationAssertion( "A mereological relationship or a topological relationship") +AnnotationAssertion( ) +AnnotationAssertion( "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "mereotopologically related to"@en) + +# Object Property: (developmentally related to) + +AnnotationAssertion( "A relationship that holds between entities participating in some developmental process (GO:0032502)") +AnnotationAssertion( ) +AnnotationAssertion( "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development") +AnnotationAssertion(rdfs:label "developmentally related to"@en) + +# Object Property: (enables) + +AnnotationAssertion( "a particular instances of akt-2 enables some instance of protein kinase activity") +AnnotationAssertion( "c enables p iff c is capable of p and c acts to execute p.") +AnnotationAssertion( ) +AnnotationAssertion( "catalyzes") +AnnotationAssertion( "executes") +AnnotationAssertion( "has") +AnnotationAssertion( "is catalyzing") +AnnotationAssertion( "is executing") +AnnotationAssertion( "This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "enables"@en) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (functionally related to) + +AnnotationAssertion( "A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities.") +AnnotationAssertion( ) +AnnotationAssertion( "This is a grouping relation that collects relations used for the purpose of connecting structure and function") +AnnotationAssertion(rdfs:label "functionally related to"@en) + +# Object Property: (part of structure that is capable of) + +AnnotationAssertion( "this relation holds between c and p when c is part of some c', and c' is capable of p.") +AnnotationAssertion( ) +AnnotationAssertion( "false"^^xsd:boolean) +AnnotationAssertion(rdfs:label "part of structure that is capable of"@en) +SubObjectPropertyOf( ) + +# Object Property: (involved in) + +AnnotationAssertion( "c involved_in p if and only if c enables some process p', and p' is part of p") +AnnotationAssertion( ) +AnnotationAssertion( "actively involved in") +AnnotationAssertion( "enables part of") +AnnotationAssertion(rdfs:label "involved in"@en) +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (enabled by) + +AnnotationAssertion( "inverse of enables") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "enabled by"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (regulated by) + +AnnotationAssertion( "inverse of regulates") +AnnotationAssertion( ) +AnnotationAssertion( "regulated by (processual)") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "regulated by"@en) +SubObjectPropertyOf( ) +TransitiveObjectProperty() +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (negatively regulated by) + +AnnotationAssertion( "inverse of negatively regulates") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "negatively regulated by"@en) +SubObjectPropertyOf( ) + +# Object Property: (positively regulated by) + +AnnotationAssertion( "inverse of positively regulates") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "positively regulated by"@en) +SubObjectPropertyOf( ) + +# Object Property: (input of) + +AnnotationAssertion( "inverse of has input") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "input of"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (has developmental potential involving) + +AnnotationAssertion( ) +AnnotationAssertion( "x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has developmental potential involving"@en) +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (has potential to developmentally contribute to) + +AnnotationAssertion( ) +AnnotationAssertion( "x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has potential to developmentally contribute to"@en) +SubObjectPropertyOf( ) + +# Object Property: (has potential to develop into) + +AnnotationAssertion( ) +AnnotationAssertion( "x has the potential to develop into y iff x develops into y or if x is capable of developing into y"@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has potential to develop into"@en) +SubObjectPropertyOf( ) + +# Object Property: (has potential to directly develop into) + +AnnotationAssertion( ) +AnnotationAssertion( "x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"@en) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has potential to directly develop into"@en) +SubObjectPropertyOf( ) + +# Object Property: (causally downstream of) + +AnnotationAssertion( ) +AnnotationAssertion( "inverse of upstream of") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "causally downstream of"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (immediately causally downstream of) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "immediately causally downstream of"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (indirectly positively regulates) + +AnnotationAssertion( "p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.") +AnnotationAssertion( ) +AnnotationAssertion( "indirectly activates") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "indirectly positively regulates"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (indirectly negatively regulates) + +AnnotationAssertion( "p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.") +AnnotationAssertion( ) +AnnotationAssertion( "indirectly inhibits") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "indirectly negatively regulates"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (causally related to) + +AnnotationAssertion(Annotation( "https://en.wikipedia.org/wiki/Causality") "relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause.") +AnnotationAssertion( "This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents. To define causal relations in an activity-flow type network, we make use of 3 primitives: @@ -1618,2451 +1055,680 @@ To define causal relations in an activity-flow type network, we make use of 3 pr * Is the causal relation regulatory? * Is the influence positive or negative? -The first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified. +The first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified. For the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule. For the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral. -Each of these 3 primitives can be composed to yield a cross-product of different relation types. - Chris Mungall - Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. - causally related to - - - - - relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause. - https://en.wikipedia.org/wiki/Causality - - - - - - - - - - - p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q. - Chris Mungall - - - causally upstream of - - - - - - - - - - p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q. - Chris Mungall - - immediately causally upstream of - - - - - - - - - - - p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q. - We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2 - Chris Mungall - influences (processual) - affects - causally upstream of or within - - - - - - - - - - inverse of causally upstream of or within - Chris Mungall - - - causally downstream of or within - - - - - - - - - - - - - - - - - - c involved in regulation of p if c is involved in some p' and p' regulates some p - Chris Mungall - involved in regulation of - - - - - - - - - - - - - - - - - c involved in regulation of p if c is involved in some p' and p' positively regulates some p - Chris Mungall - - involved in positive regulation of - - - - - - - - - - - - - - - - - c involved in regulation of p if c is involved in some p' and p' negatively regulates some p - Chris Mungall - - involved in negative regulation of - - - - - - - - - - - c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p - OWL does not allow defining object properties via a Union - Chris Mungall - involved in or reguates - involved in or involved in regulation of - - - - - - - - - - - A relationship that holds between two entities in which the processes executed by the two entities are causally connected. - Considering relabeling as 'pairwise interacts with' - This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact. - Chris Mungall - Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules. - in pairwise interaction with - - interacts with - http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ - http://purl.obolibrary.org/obo/MI_0914 - - - - - - - - - - An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other. - Chris Mungall - binds - molecularly binds with - molecularly interacts with - - http://purl.obolibrary.org/obo/MI_0915 - - - - - - - - - Axiomatization to GO to be added later - Chris Mungall - An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y. - phosphorylates - - - - - - - - - - - - - - - - - The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B. - -A and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B. - Chris Mungall - Vasundra Touré - molecularly controls - directly regulates activity of - - - - - - - - - - - - - - - - The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. -For example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B. - Chris Mungall - Vasundra Touré - directly inhibits - molecularly decreases activity of - directly negatively regulates activity of - - - - - - - - - - - - - - - - The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. -For example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B. - Chris Mungall - Vasundra Touré - directly activates - molecularly increases activity of - directly positively regulates activity of - - - - - - - - Chris Mungall - This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning. - helper property (not for use in curation) - - - - - - - - - Chris Mungall - is kinase activity - - - - - - - - - - A relationship between a material entity and a process where the material entity has some causal role that influences the process - - causal agent in process - - - - - - - - - - - p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q. - Chris Mungall - - Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. - causal relation between processes - - - - - - - - Chris Mungall - depends on - - - - - - - - - - - - The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch - Chris Mungall - - Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. - causal relation between entities - - - - - - - - - - Chris Mungall - - causally influenced by (entity-centric) - causally influenced by - - - - - - - - - Chris Mungall - interaction relation helper property - - http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ - - - - - - - - - Chris Mungall - molecular interaction relation helper property - - - - - - - - - - - - - - - - - - - - - The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size). - Chris Mungall - Vasundra Touré - - causally influences (entity-centric) - causally influences - - - - - - - - - - p directly regulates q iff p is immediately causally upstream of q and p regulates q. - Chris Mungall - - directly regulates (processual) - - - - - directly regulates - - - - - - - - - - - - - - gland SubClassOf 'has part structure that is capable of' some 'secretion by cell' - s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p - Chris Mungall - has part structure that is capable of - - - - - - - - - - - A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity. - Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. - Chris Mungall - - causal relation between material entity and a process - - - - - - - - - - - - - pyrethroid -> growth - Holds between c and p if and only if c is capable of some activity a, and a regulates p. - - capable of regulating - - - - - - - - - - - - - Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p. - - capable of negatively regulating - - - - - - - - - - - - - renin -> arteriolar smooth muscle contraction - Holds between c and p if and only if c is capable of some activity a, and a positively regulates p. - - capable of positively regulating - - - - - - - - - Inverse of 'causal agent in process' - - process has causal agent - - - - - - - - - - p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q. - - directly positively regulates (process to process) - - - - - directly positively regulates - - - - - - - - - - p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q. - - directly negatively regulates (process to process) - - - - - directly negatively regulates - - - - - - - - - - - - - Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P. - cjm - 2018-01-25T23:20:13Z - enables subfunction - - - - - - - - - - - - - - cjm - 2018-01-26T23:49:30Z - - acts upstream of or within, positive effect - - - - - - - - - - - - - - - cjm - 2018-01-26T23:49:51Z - - acts upstream of or within, negative effect - - - - - - - - - - - - - - c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive - - cjm - 2018-01-26T23:53:14Z - - acts upstream of, positive effect - - - - - - - - - - - - - - - c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative - - cjm - 2018-01-26T23:53:22Z - - acts upstream of, negative effect - - - - - - - - - - - cjm - 2018-03-13T23:55:05Z - causally upstream of or within, negative effect - - - - - - - - - - cjm - 2018-03-13T23:55:19Z - causally upstream of or within, positive effect - - - - - - - - - - - The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B. - Vasundra Touré - regulates activity of - - - - - - - - - p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q. - pg - 2022-09-26T06:07:17Z - indirectly causally upstream of - - - - - - - - - - p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q. - pg - 2022-09-26T06:08:01Z - indirectly regulates - - - - - - - - - - - - A diagnostic testing device utilizes a specimen. - X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y. - https://orcid.org/0000-0001-9625-1899 - https://orcid.org/0000-0003-2620-0345 - A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input. - See github ticket https://github.com/oborel/obo-relations/issues/497 - 2021-11-08T12:00:00Z - utilizes - device utilizes material - - - - - - - - - - - - - - - A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C. - - regulates characteristic - - - - - - - - - - - - - A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C. - - positively regulates characteristic - - - - - - - - - - - - - - - - - A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C. - - negatively regulates characteristic - - - - - - - - - - - - - - - - - - - - - - - - - - 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. - continuant - - - - - - - - - - - - - - - - - - - - An entity that has temporal parts and that happens, unfolds or develops through time. - occurrent - - - - - - - - - - - - - - - - A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything. - independent continuant - - - - - - - - - An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. - process - - - - - - - - - - disposition - - - - - - - - - - - - - - - - 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 entity - - - - - - - - - - - - - - - quality - - - - - - - - - - - - - - - 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. - specifically dependent continuant - - - +Each of these 3 primitives can be composed to yield a cross-product of different relation types.") +AnnotationAssertion( ) +AnnotationAssertion( "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.") +AnnotationAssertion(rdfs:label "causally related to"@en) + +# Object Property: (causally upstream of) + +AnnotationAssertion( "p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "causally upstream of"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (immediately causally upstream of) + +AnnotationAssertion( "p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "immediately causally upstream of"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (causally upstream of or within) + +AnnotationAssertion( "p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.") +AnnotationAssertion( "We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2") +AnnotationAssertion( ) +AnnotationAssertion( "influences (processual)") +AnnotationAssertion( "affects") +AnnotationAssertion(rdfs:label "causally upstream of or within") +SubObjectPropertyOf( ) +InverseObjectProperties( ) +TransitiveObjectProperty() + +# Object Property: (causally downstream of or within) + +AnnotationAssertion( "inverse of causally upstream of or within") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "causally downstream of or within") +SubObjectPropertyOf( ) +TransitiveObjectProperty() + +# Object Property: (involved in regulation of) + +AnnotationAssertion( "c involved in regulation of p if c is involved in some p' and p' regulates some p") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "involved in regulation of") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (involved in positive regulation of) + +AnnotationAssertion( "c involved in regulation of p if c is involved in some p' and p' positively regulates some p") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "involved in positive regulation of") +SubObjectPropertyOf( ) + +# Object Property: (involved in negative regulation of) + +AnnotationAssertion( "c involved in regulation of p if c is involved in some p' and p' negatively regulates some p") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "involved in negative regulation of") +SubObjectPropertyOf( ) + +# Object Property: (involved in or involved in regulation of) + +AnnotationAssertion( "c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p") +AnnotationAssertion( "OWL does not allow defining object properties via a Union") +AnnotationAssertion( ) +AnnotationAssertion( "involved in or reguates") +AnnotationAssertion(rdfs:label "involved in or involved in regulation of") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (interacts with) + +AnnotationAssertion( "A relationship that holds between two entities in which the processes executed by the two entities are causally connected.") +AnnotationAssertion( "Considering relabeling as 'pairwise interacts with'"^^xsd:anyURI) +AnnotationAssertion( "This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.") +AnnotationAssertion( ) +AnnotationAssertion( "Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules.") +AnnotationAssertion( "in pairwise interaction with") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "interacts with") +AnnotationAssertion(rdfs:seeAlso "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/"^^xsd:anyURI) +AnnotationAssertion( "http://purl.obolibrary.org/obo/MI_0914"^^xsd:anyURI) +SymmetricObjectProperty() +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (molecularly interacts with) + +AnnotationAssertion( "An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.") +AnnotationAssertion( ) +AnnotationAssertion( "binds") +AnnotationAssertion( "molecularly binds with") +AnnotationAssertion(rdfs:label "molecularly interacts with") +AnnotationAssertion(rdfs:seeAlso ) +AnnotationAssertion( "http://purl.obolibrary.org/obo/MI_0915"^^xsd:anyURI) +SubObjectPropertyOf( ) +SymmetricObjectProperty() + +# Object Property: (phosphorylates) + +AnnotationAssertion( "Axiomatization to GO to be added later") +AnnotationAssertion( ) +AnnotationAssertion( "An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y.") +AnnotationAssertion(rdfs:label "phosphorylates") +SubObjectPropertyOf( ) + +# Object Property: (directly regulates activity of) + +AnnotationAssertion( "The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B. + +A and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "molecularly controls") +AnnotationAssertion(rdfs:label "directly regulates activity of") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (directly negatively regulates activity of) + +AnnotationAssertion( "The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. +For example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "directly inhibits") +AnnotationAssertion( "molecularly decreases activity of") +AnnotationAssertion(rdfs:label "directly negatively regulates activity of") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (directly positively regulates activity of) + +AnnotationAssertion( "The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. +For example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "directly activates") +AnnotationAssertion( "molecularly increases activity of") +AnnotationAssertion(rdfs:label "directly positively regulates activity of") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (helper property (not for use in curation)) + +AnnotationAssertion( ) +AnnotationAssertion( "This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning.") +AnnotationAssertion(rdfs:label "helper property (not for use in curation)") + +# Object Property: (is kinase activity) + +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "is kinase activity") +SubObjectPropertyOf( ) + +# Object Property: (causal agent in process) + +AnnotationAssertion( "A relationship between a material entity and a process where the material entity has some causal role that influences the process") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "causal agent in process") +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (causal relation between processes) + +AnnotationAssertion( "p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.") +AnnotationAssertion(rdfs:label "causal relation between processes") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (depends on) + +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "depends on") +AnnotationAssertion(rdfs:seeAlso ) + +# Object Property: (causal relation between entities) + +AnnotationAssertion( "The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.") +AnnotationAssertion(rdfs:label "causal relation between entities") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (causally influenced by) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "causally influenced by (entity-centric)") +AnnotationAssertion(rdfs:label "causally influenced by") +SubObjectPropertyOf( ) +InverseObjectProperties( ) + +# Object Property: (interaction relation helper property) + +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "interaction relation helper property") +AnnotationAssertion(rdfs:seeAlso ) +AnnotationAssertion(rdfs:seeAlso "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/"^^xsd:anyURI) +SubObjectPropertyOf( ) + +# Object Property: (molecular interaction relation helper property) + +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "molecular interaction relation helper property") +SubObjectPropertyOf( ) + +# Object Property: (causally influences) + +AnnotationAssertion( "The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "causally influences (entity-centric)") +AnnotationAssertion(rdfs:label "causally influences") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (directly regulates) + +AnnotationAssertion( "p directly regulates q iff p is immediately causally upstream of q and p regulates q.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "directly regulates (processual)") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "directly regulates") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (has part structure that is capable of) + +AnnotationAssertion( "gland SubClassOf 'has part structure that is capable of' some 'secretion by cell'") +AnnotationAssertion( "s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "has part structure that is capable of") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (causal relation between material entity and a process) + +AnnotationAssertion( "A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.") +AnnotationAssertion( "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "causal relation between material entity and a process") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (capable of regulating) + +AnnotationAssertion( "pyrethroid -> growth") +AnnotationAssertion( "Holds between c and p if and only if c is capable of some activity a, and a regulates p.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "capable of regulating") +SubObjectPropertyOf( ) + +# Object Property: (capable of negatively regulating) + +AnnotationAssertion( "Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "capable of negatively regulating") +SubObjectPropertyOf( ) + +# Object Property: (capable of positively regulating) + +AnnotationAssertion( "renin -> arteriolar smooth muscle contraction") +AnnotationAssertion( "Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "capable of positively regulating") +SubObjectPropertyOf( ) + +# Object Property: (process has causal agent) + +AnnotationAssertion( "Inverse of 'causal agent in process'") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "process has causal agent") +SubObjectPropertyOf( ) + +# Object Property: (directly positively regulates) + +AnnotationAssertion( "p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.") +AnnotationAssertion( ) +AnnotationAssertion( "directly positively regulates (process to process)") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "directly positively regulates") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (directly negatively regulates) + +AnnotationAssertion( "p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.") +AnnotationAssertion( ) +AnnotationAssertion( "directly negatively regulates (process to process)") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "directly negatively regulates") +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (enables subfunction) + +AnnotationAssertion( "Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P.") +AnnotationAssertion( ) +AnnotationAssertion( "2018-01-25T23:20:13Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "enables subfunction") +SubObjectPropertyOf( ) + +# Object Property: (acts upstream of or within, positive effect) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "2018-01-26T23:49:30Z"^^xsd:dateTime) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "acts upstream of or within, positive effect") +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) + +# Object Property: (acts upstream of or within, negative effect) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "2018-01-26T23:49:51Z"^^xsd:dateTime) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "acts upstream of or within, negative effect") +SubObjectPropertyOf( ) + +# Object Property: (acts upstream of, positive effect) + +AnnotationAssertion( "c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "2018-01-26T23:53:14Z"^^xsd:dateTime) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "acts upstream of, positive effect") +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (acts upstream of, negative effect) + +AnnotationAssertion( "c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "2018-01-26T23:53:22Z"^^xsd:dateTime) +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "acts upstream of, negative effect") +AnnotationAssertion(rdfs:seeAlso ) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (causally upstream of or within, negative effect) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "2018-03-13T23:55:05Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "causally upstream of or within, negative effect") +SubObjectPropertyOf( ) + +# Object Property: (causally upstream of or within, positive effect) + +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "2018-03-13T23:55:19Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "causally upstream of or within, positive effect") +SubObjectPropertyOf( ) + +# Object Property: (regulates activity of) + +AnnotationAssertion( "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "regulates activity of") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) + +# Object Property: (indirectly causally upstream of) + +AnnotationAssertion( "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.") +AnnotationAssertion( "pg") +AnnotationAssertion( "2022-09-26T06:07:17Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "indirectly causally upstream of"@en) +SubObjectPropertyOf( ) + +# Object Property: (indirectly regulates) + +AnnotationAssertion( "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.") +AnnotationAssertion( "pg") +AnnotationAssertion( "2022-09-26T06:08:01Z"^^xsd:dateTime) +AnnotationAssertion(rdfs:label "indirectly regulates"@en) +SubObjectPropertyOf( ) +SubObjectPropertyOf( ) + +# Object Property: (device utilizes material) + +AnnotationAssertion( "A diagnostic testing device utilizes a specimen.") +AnnotationAssertion( "X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y.") +AnnotationAssertion( ) +AnnotationAssertion( ) +AnnotationAssertion( "A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input.") +AnnotationAssertion( "See github ticket https://github.com/oborel/obo-relations/issues/497") +AnnotationAssertion( "2021-11-08T12:00:00Z") +AnnotationAssertion( "utilizes") +AnnotationAssertion(rdfs:label "device utilizes material"@en) + +# Object Property: (regulates characteristic) + +AnnotationAssertion( "A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "regulates characteristic") +SubObjectPropertyOf( ) +ObjectPropertyDomain( ) +ObjectPropertyRange( ) - +# Object Property: (positively regulates characteristic) - - - 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. - role - - +AnnotationAssertion( "A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "positively regulates characteristic") +SubObjectPropertyOf( ) +# Object Property: (negatively regulates characteristic) - +AnnotationAssertion( "A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.") +AnnotationAssertion( ) +AnnotationAssertion(rdfs:label "negatively regulates characteristic") +SubObjectPropertyOf( ) - - - function - - - +############################ +# Classes +############################ - - - An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time. - material entity - - +# Class: (continuant) +AnnotationAssertion( "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) +AnnotationAssertion(rdfs:label "continuant"@en) +SubClassOf( ObjectAllValuesFrom( )) +DisjointClasses( ) +DisjointClasses( ObjectSomeValuesFrom( )) - +# Class: (occurrent) - - - - anatomical entity - - +AnnotationAssertion( "An entity that has temporal parts and that happens, unfolds or develops through time."@en) +AnnotationAssertion(rdfs:label "occurrent"@en) +SubClassOf( ObjectAllValuesFrom( )) +DisjointClasses( ObjectSomeValuesFrom( )) +# Class: (independent continuant) - +AnnotationAssertion( "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything."@en) +AnnotationAssertion(rdfs:label "independent continuant"@en) +SubClassOf( ) +SubClassOf( ObjectAllValuesFrom( )) +DisjointClasses( ) - - - biological entity - - +# Class: (process) +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( ) - +# Class: (disposition) - - - molecular process - molecular_function - - - - - - - - - catalytic activity - - - - - - - - - biological_process - - - - - - - - - - - - true - - - kinase activity - - - - - - - - - transferase activity - - - - - - - - - transferase activity, transferring phosphorus-containing groups - - - - - - - - - quality (PATO) - quality - - - - - - - - is defined by - - - - - is defined by - This is an experimental annotation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - 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 - infer input from direct reg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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' - enabling an MF enables its parts - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - 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' - involved in BP - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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. - inferring direct reg edge from input to regulatory subfunction - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - inferring direct neg reg edge from input to regulatory subfunction - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - inferring direct positive reg edge from input to regulatory subfunction - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - effector input is compound function input - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Input of effector is input of its parent MF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if effector directly regulates X, its parent MF directly regulates X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if effector directly positively regulates X, its parent MF directly positively regulates X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if effector directly negatively regulates X, its parent MF directly negatively regulates X - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 'causally downstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 'causally upstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +AnnotationAssertion(rdfs:label "disposition"@en) +SubClassOf( ) +DisjointClasses( ) +# Class: (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 entity"@en) +SubClassOf( ) +SubClassOf( ObjectAllValuesFrom( )) +DisjointClasses( ) + +# Class: (quality) + +AnnotationAssertion(rdfs:label "quality"@en) +SubClassOf( ) +SubClassOf( ObjectAllValuesFrom( )) + +# Class: (specifically dependent continuant) + +AnnotationAssertion( "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 "specifically dependent continuant"@en) +SubClassOf( ) +SubClassOf( ObjectAllValuesFrom( )) + +# Class: (role) + +AnnotationAssertion( "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) +AnnotationAssertion(rdfs:label "role"@en) +SubClassOf( ) + +# Class: (function) + +AnnotationAssertion(rdfs:label "function"@en) +SubClassOf( ) + +# Class: (material entity) + +AnnotationAssertion( "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."@en) +AnnotationAssertion(rdfs:label "material entity"@en) +SubClassOf( ) + +# Class: (anatomical entity) + +AnnotationAssertion(Annotation( "CAROC:Brownsville2014") "A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex.") +AnnotationAssertion( "CARO:0000000") +AnnotationAssertion(rdfs:comment "Following BFO, material anatomical entities may have immaterial parts (the lumen of your stomach is part of your stomach). The granularity limit follows the limits set by the Gene Ontology on the granularity limit for GO:cellular_component. Note that substances produced by an organism (sweat, feaces, urine) do not need to be part of an organism to qualify as an anatomical structure.") +AnnotationAssertion(rdfs:label "anatomical entity") +SubClassOf( ) + +# Class: (molecular_function) + +AnnotationAssertion(Annotation( "GOC:pdt") "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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process.") +AnnotationAssertion( "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:label "molecular_function") + +# Class: (biological_process) + +AnnotationAssertion(Annotation( "GOC:pdt") "A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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( "jl") +AnnotationAssertion( "2012-09-19T15:05:24Z") +AnnotationAssertion( "Wikipedia:Biological_process") +AnnotationAssertion( "biological process") +AnnotationAssertion( "physiological process") +AnnotationAssertion( "single organism process") +AnnotationAssertion( "single-organism process") +AnnotationAssertion( "GO:0008150") +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") + +# Class: (kinase activity) + +AnnotationAssertion(Annotation( "ISBN:0198506732") "Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule.") +AnnotationAssertion(Annotation(rdfs:label "FN3KRP phosphorylates PsiAm, RibAm") "Reactome:R-HSA-6788855") +AnnotationAssertion(Annotation(rdfs:label "FN3K phosphorylates ketosamines") "Reactome:R-HSA-6788867") +AnnotationAssertion( "phosphokinase activity") +AnnotationAssertion( "GO:0016301") +AnnotationAssertion(rdfs:comment "Note that this term encompasses all activities that transfer a single phosphate group; although ATP is by far the most common phosphate donor, reactions using other phosphate donors are included in this term.") +AnnotationAssertion(rdfs:label "kinase activity") +SubClassOf( ) +SubClassOf( ObjectHasSelf()) + +# Class: (quality) + +AnnotationAssertion(Annotation( "PATOC:GVG") "A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities") +AnnotationAssertion( "PATO:0000001") +AnnotationAssertion(rdfs:label "quality") +SubClassOf( ) + + +SubClassOf(ObjectSomeValuesFrom( ) ObjectUnionOf(ObjectSomeValuesFrom( ObjectSomeValuesFrom( )) ObjectSomeValuesFrom( ObjectSomeValuesFrom( ObjectSomeValuesFrom( ))))) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(Annotation( "true"^^xsd:boolean) ObjectPropertyChain( ) ) +SubObjectPropertyOf(Annotation( "true"^^xsd:boolean) ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(Annotation( "true"^^xsd:boolean) ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(Annotation( "true"^^xsd:boolean) ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +SubObjectPropertyOf(ObjectPropertyChain( ) ) +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()))) +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") +) \ No newline at end of file diff --git a/src/ontology/non_native_classes.txt b/src/ontology/non_native_classes.txt index 408dd33..92028a6 100644 --- a/src/ontology/non_native_classes.txt +++ b/src/ontology/non_native_classes.txt @@ -10,12 +10,8 @@ http://purl.obolibrary.org/obo/BFO_0000023 http://purl.obolibrary.org/obo/BFO_0000034 http://purl.obolibrary.org/obo/BFO_0000040 http://purl.obolibrary.org/obo/CARO_0000000 -http://purl.obolibrary.org/obo/CARO_0030000 http://purl.obolibrary.org/obo/GO_0003674 -http://purl.obolibrary.org/obo/GO_0003824 http://purl.obolibrary.org/obo/GO_0008150 http://purl.obolibrary.org/obo/GO_0016301 -http://purl.obolibrary.org/obo/GO_0016740 -http://purl.obolibrary.org/obo/GO_0016772 http://purl.obolibrary.org/obo/PATO_0000001 term diff --git a/src/ontology/run.sh b/src/ontology/run.sh index 9a498dd..2718ff6 100755 --- a/src/ontology/run.sh +++ b/src/ontology/run.sh @@ -8,10 +8,36 @@ # The assumption is that you are working in the src/ontology folder; # we therefore map the whole repo (../..) to a docker volume. # +# To use singularity instead of docker, please issue +# export USE_SINGULARITY= +# before running this script. +# # See README-editors.md for more details. -IMAGE=${IMAGE:-odkfull} -ODK_JAVA_OPTS=-Xmx8G +if [ -f run.sh.conf ]; then + . ./run.sh.conf +fi + +# Look for a GitHub token +if [ -n "$GH_TOKEN" ]; then + : +elif [ -f ../../.github/token.txt ]; then + GH_TOKEN=$(cat ../../.github/token.txt) +elif [ -f $XDG_CONFIG_HOME/ontology-development-kit/github/token ]; then + GH_TOKEN=$(cat $XDG_CONFIG_HOME/ontology-development-kit/github/token) +elif [ -f "$HOME/Library/Application Support/ontology-development-kit/github/token" ]; then + GH_TOKEN=$(cat "$HOME/Library/Application Support/ontology-development-kit/github/token") +fi + +ODK_IMAGE=${ODK_IMAGE:-odkfull} +TAG_IN_IMAGE=$(echo $ODK_IMAGE | awk -F':' '{ print $2 }') +if [ -n "$TAG_IN_IMAGE" ]; then + # Override ODK_TAG env var if IMAGE already includes a tag + ODK_TAG=$TAG_IN_IMAGE + ODK_IMAGE=$(echo $ODK_IMAGE | awk -F':' '{ print $1 }') +fi +ODK_TAG=${ODK_TAG:-latest} +ODK_JAVA_OPTS=${ODK_JAVA_OPTS:--Xmx8G} ODK_DEBUG=${ODK_DEBUG:-no} TIMECMD= @@ -23,7 +49,26 @@ if [ x$ODK_DEBUG = xyes ]; then TIMECMD="/usr/bin/time -f ### DEBUG STATS ###\nElapsed time: %E\nPeak memory: %M kb" fi -docker run -v $PWD/../../:/work -w /work/src/ontology -e ROBOT_JAVA_ARGS="$ODK_JAVA_OPTS" -e JAVA_OPTS="$ODK_JAVA_OPTS" --rm -ti obolibrary/$IMAGE $TIMECMD "$@" +VOLUME_BIND=$PWD/../../:/work +WORK_DIR=/work/src/ontology + +if [ -n "$ODK_BINDS" ]; then + VOLUME_BIND="$VOLUME_BIND,$ODK_BINDS" +fi + +if [ -n "$USE_SINGULARITY" ]; then + + singularity exec --cleanenv $ODK_SINGULARITY_OPTIONS \ + --env "ROBOT_JAVA_ARGS=$ODK_JAVA_OPTS,JAVA_OPTS=$ODK_JAVA_OPTS" \ + --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" \ + --rm -ti obolibrary/$ODK_IMAGE:$ODK_TAG $TIMECMD "$@" +fi case "$@" in *update_repo*|*release*) diff --git a/src/sparql/edges.sparql b/src/sparql/edges.sparql index 5fec04e..edf658b 100644 --- a/src/sparql/edges.sparql +++ b/src/sparql/edges.sparql @@ -1,4 +1,3 @@ -prefix obo: prefix owl: prefix rdfs: prefix rdf: diff --git a/src/sparql/inject-subset-declaration.ru b/src/sparql/inject-subset-declaration.ru index 18a8430..788313b 100644 --- a/src/sparql/inject-subset-declaration.ru +++ b/src/sparql/inject-subset-declaration.ru @@ -7,5 +7,5 @@ INSERT { ?y rdfs:subPropertyOf ?y . FILTER(isIRI(?y)) - FILTER(regex(str(?y),"^(http://purl.obolibrary.org/obo/)") || regex(str(?y),"^(http://www.ebi.ac.uk/efo/)") || regex(str(?y),"^(https://w3id.org/biolink/)")) + FILTER(regex(str(?y),"^(http://purl.obolibrary.org/obo/)") || regex(str(?y),"^(http://www.ebi.ac.uk/efo/)") || regex(str(?y),"^(https://w3id.org/biolink/)") || regex(str(?y),"^(http://purl.obolibrary.org/obo)")) } \ No newline at end of file diff --git a/src/sparql/inject-synonymtype-declaration.ru b/src/sparql/inject-synonymtype-declaration.ru index 9906089..cad57ed 100644 --- a/src/sparql/inject-synonymtype-declaration.ru +++ b/src/sparql/inject-synonymtype-declaration.ru @@ -7,5 +7,5 @@ INSERT { ?y rdfs:subPropertyOf ?y . FILTER(isIRI(?y)) - FILTER(regex(str(?y),"^(http://purl.obolibrary.org/obo/)") || regex(str(?y),"^(http://www.ebi.ac.uk/efo/)") || regex(str(?y),"^(https://w3id.org/biolink/)")) + FILTER(regex(str(?y),"^(http://purl.obolibrary.org/obo/)") || regex(str(?y),"^(http://www.ebi.ac.uk/efo/)") || regex(str(?y),"^(https://w3id.org/biolink/)") || regex(str(?y),"^(http://purl.obolibrary.org/obo)")) } \ No newline at end of file diff --git a/src/sparql/iri-range-violation.sparql b/src/sparql/iri-range-violation.sparql index 332f04c..9eff70a 100644 --- a/src/sparql/iri-range-violation.sparql +++ b/src/sparql/iri-range-violation.sparql @@ -13,7 +13,7 @@ WHERE { oboInOwl:inSubset dcterms:contributor } ?term ?property ?value . - FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBLS_") || STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) FILTER (!isIRI(?value)) } diff --git a/src/sparql/label-with-iri-violation.sparql b/src/sparql/label-with-iri-violation.sparql index 20c24a1..7e97924 100644 --- a/src/sparql/label-with-iri-violation.sparql +++ b/src/sparql/label-with-iri-violation.sparql @@ -4,6 +4,6 @@ SELECT ?term ?value WHERE { ?term rdfs:label ?value . FILTER (REGEX(?value, "http[s]?[:]")) - FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBLS_") || STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) } diff --git a/src/sparql/multiple-replaced_by-violation.sparql b/src/sparql/multiple-replaced_by-violation.sparql new file mode 100644 index 0000000..65bb8de --- /dev/null +++ b/src/sparql/multiple-replaced_by-violation.sparql @@ -0,0 +1,12 @@ +PREFIX replaced_by: + +SELECT DISTINCT ?entity ?property ?value WHERE { + VALUES ?property { + replaced_by: + } + ?entity ?property ?value1 . + ?entity ?property ?value2 . + FILTER(?value1!=?value2) + BIND(CONCAT(str(?value1), CONCAT("|", str(?value2))) as ?value) +} + diff --git a/src/sparql/owldef-self-reference-violation.sparql b/src/sparql/owldef-self-reference-violation.sparql index 89d3c17..5883bae 100644 --- a/src/sparql/owldef-self-reference-violation.sparql +++ b/src/sparql/owldef-self-reference-violation.sparql @@ -7,6 +7,6 @@ SELECT ?term WHERE { { ?term owl:equivalentClass [ owl:intersectionOf [ rdf:rest*/rdf:first ?term ] ] } UNION { ?term owl:equivalentClass [ owl:intersectionOf [ rdf:rest*/rdf:first [ owl:someValuesFrom ?term ] ] ] } - FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBLS_") || STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) } diff --git a/src/sparql/simple-seed.sparql b/src/sparql/simple-seed.sparql index a96d263..247fbde 100644 --- a/src/sparql/simple-seed.sparql +++ b/src/sparql/simple-seed.sparql @@ -1,5 +1,4 @@ prefix owl: -prefix obo: SELECT DISTINCT ?cls WHERE { diff --git a/src/sparql/subsets-labeled.sparql b/src/sparql/subsets-labeled.sparql index 7bc992f..5ca7e31 100644 --- a/src/sparql/subsets-labeled.sparql +++ b/src/sparql/subsets-labeled.sparql @@ -1,5 +1,4 @@ prefix oio: -prefix def: prefix owl: prefix inSubset: prefix rdfs: diff --git a/src/sparql/wbls_terms.sparql b/src/sparql/wbls_terms.sparql index 2a13030..aa325c8 100644 --- a/src/sparql/wbls_terms.sparql +++ b/src/sparql/wbls_terms.sparql @@ -3,5 +3,5 @@ WHERE { { ?s1 ?p1 ?term . } UNION { ?term ?p2 ?o2 . } - FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBLS_") || STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) } diff --git a/wbls-base.json b/wbls-base.json index 742a4db..945bc58 100644 --- a/wbls-base.json +++ b/wbls-base.json @@ -1,36279 +1,26714 @@ { - "graphs": [ - { - "edges": [ - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000062", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000825" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000006", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000007", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000008", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000009", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000011", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000012", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000025", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000028", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000032", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000036", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000073" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000039", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000056" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000057" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000046", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000052", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000064", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000065", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000066", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000067", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000069", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000070", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000071", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000072", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000074", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000101" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000704" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000077", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000079", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000080", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000082", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000084", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000086", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000087", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000088", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000090", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000094", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000095", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000100", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000001" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000059" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000076" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000102" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000105" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000741" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000106" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000664" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000679" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000111", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000112", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000113", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000114", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000115", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000116", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000117", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000118", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000119", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000120", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000121", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000122", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000123", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000124", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000125", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000126", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000127", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000128", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000129", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000130", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000131", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000132", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000133", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000134", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000135", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000136", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000137", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000138", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000139", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000140", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000141", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000142", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000143", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000144", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000145", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000146", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000147", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000148", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000149", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000150", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000151", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000152", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000153", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000154", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000155", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000156", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000157", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000158", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000159", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000160", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000161", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000162", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000163", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000164", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000165", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000166", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000167", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000168", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000169", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000170", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000171", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000172", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000173", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000174", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000175", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000176", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000177", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000178", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000179", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000180", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000181", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000182", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000183", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000184", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000185", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000186", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000187", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000188", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000189", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000190", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000191", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000192", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000193", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000194", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000195", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000196", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000197", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000198", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000199", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000200", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000201", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000202", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000203", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000204", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000205", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000206", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000207", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000208", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000209", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000210", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000211", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000212", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000213", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000214", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000215", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000216", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000217", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000218", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000219", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000220", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000221", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000222", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000223", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000224", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000225", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000226", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000227", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000228", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000229", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000230", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000231", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000232", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000233", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000234", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000235", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000236", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000237", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000238", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000239", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000240", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000241", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000242", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000243", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000244", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000245", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000246", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000247", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000248", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000249", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000250", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000251", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000252", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000253", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000254", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000255", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000256", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000257", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000258", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000259", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000260", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000261", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000262", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000263", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000264", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000265", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000266", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000267", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000268", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000269", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000270", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000271", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000272", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000273", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000274", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000275", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000276", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000277", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000278", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000279", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000280", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000281", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000282", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000283", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000284", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000285", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000286", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000287", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000288", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000289", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000290", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000291", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000292", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000293", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000294", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000295", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000296", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000297", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000298", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000299", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000300", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000301", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000302", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000303", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000304", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000305", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000306", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000307", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000308", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000309", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000310", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000311", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000312", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000313", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000314", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000315", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000316", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000317", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000318", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000319", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000320", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000321", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000322", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000323", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000324", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000325", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000326", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000327", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000328", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000329", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000330", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000331", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000332", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000333", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000334", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000335", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000336", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000337", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000338", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000339", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000340", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000341", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000342", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000343", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000344", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000345", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000346", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000347", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000348", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000349", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000350", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000351", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000352", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000353", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000354", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000355", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000356", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000357", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000358", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000359", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000360", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000361", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000362", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000363", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000364", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000365", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000366", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000367", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000368", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000369", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000370", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000371", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000372", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000373", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000374", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000375", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000376", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000377", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000378", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000379", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000380", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000381", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000382", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000383", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000384", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000385", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000386", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000387", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000388", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000389", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000390", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000391", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000392", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000393", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000394", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000395", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000396", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000397", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000398", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000399", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000400", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000401", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000402", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000403", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000404", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000405", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000406", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000407", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000408", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000409", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000410", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000411", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000412", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000413", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000414", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000415", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000416", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000417", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000418", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000419", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000420", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000421", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000422", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000423", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000424", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000425", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000426", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000427", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000428", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000429", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000430", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000431", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000432", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000433", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000434", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000435", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000436", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000437", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000438", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000439", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000440", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000441", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000442", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000443", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000444", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000445", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000446", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000447", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000448", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000449", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000450", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000451", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000452", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000453", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000454", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000455", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000456", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000457", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000458", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000459", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000460", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000461", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000462", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000463", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000464", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000465", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000466", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000467", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000468", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000469", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000470", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000471", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000472", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000473", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000474", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000475", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000476", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000477", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000478", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000479", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000480", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000481", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000482", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000483", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000484", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000485", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000486", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000487", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000488", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000489", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000490", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000491", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000492", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000493", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000494", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000495", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000496", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000497", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000498", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000499", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000500", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000501", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000502", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000503", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000504", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000505", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000506", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000507", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000508", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000509", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000510", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000511", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000512", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000513", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000514", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000515", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000516", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000517", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000518", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000519", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000520", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000521", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000522", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000523", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000524", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000525", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000526", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000527", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000528", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000529", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000530", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000531", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000532", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000533", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000534", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000535", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000536", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000537", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000538", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000539", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000540", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000541", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000542", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000543", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000544", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000545", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000546", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000547", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000548", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000549", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000550", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000551", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000552", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000553", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000554", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000555", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000556", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000557", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000558", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000559", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000560", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000561", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000562", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000563", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000564", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000565", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000566", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000567", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000568", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000569", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000570", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000571", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000572", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000573", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000574", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000575", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000576", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000577", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000578", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000579", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000580", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000581", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000582", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000583", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000584", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000585", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000586", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000587", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000588", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000589", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000590", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000591", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000592", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000593", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000594", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000595", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000596", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000597", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000598", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000599", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000600", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000601", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000602", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000603", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000604", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000605", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000606", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000607", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000608", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000609", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000610", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000611", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000612", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000613", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000614", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000615", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000616", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000617", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000618", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000619", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000620", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000621", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000622", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000623", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000624", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000625", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000626", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000627", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000628", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000629", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000630", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000631", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000632", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000633", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000634", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000635", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000636", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000637", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000638", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000639", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000640", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000641", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000642", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000643", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000644", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000645", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000646", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000647", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000648", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000649", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000650", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000651", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000652", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000653", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000654", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000655", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000656", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000657", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000658", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000659", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000660", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000661", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000663", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000110" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000667" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000668" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000669", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000670", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000671", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000672", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000673", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000675", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000795" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000729" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000742" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000683", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000684", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000685", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000686", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000687", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000688", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000689", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000690", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000691", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000693", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000694", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000695", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000696", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000697", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000698", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000699", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000700", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000701", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000702", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000705" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000711" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000712" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000708", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000724" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000706" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000707" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000708" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000718" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000719" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000720" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000713" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000716" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000723", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000724", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000727", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000728", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000730", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000731", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000732", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000734" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000734", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000735", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000738" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000723" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000726" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000797", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000798", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000799", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000800", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000801", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000805" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000811" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000812" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000816" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000817" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000806" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000807" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000808" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000809" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000810" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000813" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000814" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000815" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000818" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000819" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000820" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000821" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000824" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000002" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000669" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000803" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000804" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000822" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000823" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" - } - ], - "id": "http://purl.obolibrary.org/obo/wbls/wbls-base.json", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000700", - "val": "http://purl.obolibrary.org/obo/WBls_0000075" - }, - { - "pred": "http://purl.org/dc/elements/1.1/description", - "val": "Ontology about the development and life stages of the C. elegans" - }, - { - "pred": "http://purl.org/dc/elements/1.1/title", - "val": "C. elegans Development Ontology" - }, - { - "pred": "http://purl.org/dc/elements/1.1/type", - "val": "http://purl.obolibrary.org/obo/IAO_8000001" - }, - { - "pred": "http://purl.org/dc/terms/license", - "val": "http://creativecommons.org/licenses/by/4.0/" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", - "val": "OBO-Edit 2.2-rc1" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#date", - "val": "15:11:2017 12:24" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#default-namespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", - "val": "1.2" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#saved-by", - "val": "chris-grove" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Version: 1.04" - }, - { - "pred": "http://www.w3.org/2002/07/owl#versionInfo", - "val": "2023-01-03" - } - ], - "version": "http://purl.obolibrary.org/obo/wbls/releases/2023-01-03/wbls-base.json" - }, - "nodes": [ - { - "id": "http://purl.obolibrary.org/obo/BFO_0000050", - "lbl": "part_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "part_of" - } - ], - "xrefs": [ - { - "val": "BFO:0000050" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000062", - "lbl": "preceded_by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "preceded_by" - } - ], - "xrefs": [ - { - "val": "BFO:0000062" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002087", - "lbl": "starts_at_end_of", - "meta": { - "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" - } - ], - "xrefs": [ - { - "val": "RO:0002087" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000001", - "lbl": "free-living nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:42:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely outside of a host organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000002", - "lbl": "all stages Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "All C. elegans development stages, including embryo, larva and adult stage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000003", - "lbl": "embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000004", - "lbl": "proliferating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "proliferating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000005", - "lbl": "blastula embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "blastula embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000006", - "lbl": "1-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-cell embryo" - }, - { - "pred": "hasExactSynonym", - "val": "fertilized egg", - "xrefs": [ - "WB:dr" - ] - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000007", - "lbl": "2-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000008", - "lbl": "4-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000009", - "lbl": "28-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000010", - "lbl": "gastrulating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "gastrulating embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000011", - "lbl": "51-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000012", - "lbl": "88-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000013", - "lbl": "enclosing embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "enclosing embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000014", - "lbl": "late cleavage stage embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late cleavage stage embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000015", - "lbl": "elongating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "elongating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "mid embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000016", - "lbl": "bean embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "bean embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000017", - "lbl": "comma embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "comma embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000018", - "lbl": "1.5-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1.5-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000019", - "lbl": "2-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000020", - "lbl": "3-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000021", - "lbl": "fully-elongated embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "fully-elongated embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "morphogenetic stage" - }, - { - "pred": "hasExactSynonym", - "val": "pre-hatched embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000022", - "lbl": "postembryonic Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000023", - "lbl": "larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000024", - "lbl": "L1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000025", - "lbl": "L1-L2 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000026", - "lbl": "L1-L2 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000027", - "lbl": "L2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000028", - "lbl": "L2-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000029", - "lbl": "L2-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000030", - "lbl": "L2d-dauer lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000031", - "lbl": "L2d-dauer molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000032", - "lbl": "dauer larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A third stage larva specialized for dispersal and long term survival.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "dauer larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000033", - "lbl": "postdauer-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000034", - "lbl": "postdauer-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000035", - "lbl": "L3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000036", - "lbl": "L3-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000037", - "lbl": "L3-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000038", - "lbl": "L4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000039", - "lbl": "L4-adult lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000040", - "lbl": "L4-adult molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000041", - "lbl": "adult Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000042", - "lbl": "L1-L2 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000043", - "lbl": "L1-L2d molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000044", - "lbl": "L1-L2d lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000045", - "lbl": "L1-L2d ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000046", - "lbl": "L2d larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000047", - "lbl": "L2-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000048", - "lbl": "L2d-dauer ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000049", - "lbl": "L3-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000050", - "lbl": "L4-adult ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000051", - "lbl": "postdauer-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000052", - "lbl": "post dauer L3 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", - "xrefs": [ - "PMID:27417559", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL3" - }, - { - "pred": "hasExactSynonym", - "val": "dauer exit" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000053", - "lbl": "L2d-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000054", - "lbl": "L2d-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000055", - "lbl": "L2d-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000056", - "lbl": "adult male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an male animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000057", - "lbl": "adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000058", - "lbl": "pre-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "pre-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000059", - "lbl": "parasitic nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:44:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000060", - "lbl": "reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000061", - "lbl": "oocyte-laying stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "oocyte-laying stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000062", - "lbl": "post-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000063", - "lbl": "newly molted young adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 0-24 hours after L4-adult molt.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "newly molted young adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000064", - "lbl": "1-day post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-day post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000065", - "lbl": "2-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000066", - "lbl": "3-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000067", - "lbl": "4-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000068", - "lbl": "5-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000069", - "lbl": "4-7 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-7 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000070", - "lbl": "7-10 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-10 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000071", - "lbl": "8-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000072", - "lbl": "12-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000073", - "lbl": "L4 larva male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000074", - "lbl": "11-15 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-22T14:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000075", - "lbl": "worm life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of a worm", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000076", - "lbl": "Strongyloides life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:49:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Strongyloides developmental stage, including free-living and parasitic stages.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages Strongyloides" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000077", - "lbl": "Brugia sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000662" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "sheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia immature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "immature microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000079", - "lbl": "Brugia L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1" - }, - { - "pred": "hasExactSynonym", - "val": "L1 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000080", - "lbl": "Brugia L2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:30:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2" - }, - { - "pred": "hasExactSynonym", - "val": "L2 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000081", - "lbl": "Brugia L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3" - }, - { - "pred": "hasExactSynonym", - "val": "L3 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000082", - "lbl": "Brugia L4", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:38Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4" - }, - { - "pred": "hasExactSynonym", - "val": "L4 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000083", - "lbl": "Brugia adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:32:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000084", - "lbl": "14-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:15:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "E-cell has divided into Ea and Ep. Contains 14 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000085", - "lbl": "24-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:23:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fourth cleavage of the AB lineage. Contains 24 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000086", - "lbl": "44-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:25:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fifth cleavage of the AB lineage. Contains 44 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000087", - "lbl": "68-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:26:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Sixth cleavage of the AB lineage. Contains 68 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000088", - "lbl": "86-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:27:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Seventh cleavage of the AB lineage. Contains 86 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000089", - "lbl": "190-cells embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-15T13:19:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "P4 and M cells have finished migrating. Contains 190 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190-cells embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000090", - "lbl": "96-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-16T15:37:30Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000091", - "lbl": "Brugia life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T03:18:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Brugia developmental stage, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000092", - "lbl": "Brugia embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:48:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - }, - { - "pred": "hasExactSynonym", - "val": "embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000093", - "lbl": "Brugia postembryonic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:50:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic stage" - }, - { - "pred": "hasExactSynonym", - "val": "postembryonic Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000094", - "lbl": "Brugia early embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:55:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "early embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000095", - "lbl": "Brugia middle embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:59:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Proliferates from 100 cells to Lima bean stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "middle embryo" - }, - { - "pred": "hasExactSynonym", - "val": "middle embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000096", - "lbl": "Brugia late embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:00:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "From Lima bean to hatching.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000097", - "lbl": "Brugia larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:12:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000098", - "lbl": "Brugia L3i", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:23:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3i" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia vector-derived L3" - }, - { - "pred": "hasExactSynonym", - "val": "vector-derived L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "iL3" - }, - { - "pred": "hasRelatedSynonym", - "val": "infective L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000099", - "lbl": "Brugia post-infection L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:24:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-infection L3" - }, - { - "pred": "hasExactSynonym", - "val": "post-infection L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "piL3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000100", - "lbl": "Brugia young adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:37:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "young adult" - }, - { - "pred": "hasExactSynonym", - "val": "young adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000101", - "lbl": "Nematode life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:13:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in a nematode, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000102", - "lbl": "nematode embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "embryo nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode egg stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000103", - "lbl": "postembryonic nematode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:39Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a nematode that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000104", - "lbl": "nematode adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:18:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L5" - }, - { - "pred": "hasExactSynonym", - "val": "adult nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000105", - "lbl": "nematode larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:19:27Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins after hatching and ends when the nematode becomes adult.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000106", - "lbl": "L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000107", - "lbl": "L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L2 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000108", - "lbl": "L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:21:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L3 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000109", - "lbl": "L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:22:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L4 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000110", - "lbl": "sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:23:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000111", - "lbl": "16-18 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16-18 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000112", - "lbl": "1 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000113", - "lbl": "2 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000114", - "lbl": "3 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000115", - "lbl": "4 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000116", - "lbl": "5 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000117", - "lbl": "6 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000118", - "lbl": "7 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000119", - "lbl": "8 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000120", - "lbl": "9 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000121", - "lbl": "10 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000122", - "lbl": "11 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000123", - "lbl": "12 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000124", - "lbl": "13 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000125", - "lbl": "14 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000126", - "lbl": "15 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000127", - "lbl": "16 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000128", - "lbl": "17 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "17 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000129", - "lbl": "18 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "18 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000130", - "lbl": "19 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "19 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000131", - "lbl": "20 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000132", - "lbl": "21 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "21 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000133", - "lbl": "22 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "22 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000134", - "lbl": "23 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "23 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000135", - "lbl": "24 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000136", - "lbl": "25 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "25 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000137", - "lbl": "26 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "26 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000138", - "lbl": "27 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "27 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000139", - "lbl": "28 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000140", - "lbl": "29 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "29 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000141", - "lbl": "30 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "30 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000142", - "lbl": "31 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "31 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000143", - "lbl": "32 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "32 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000144", - "lbl": "33 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "33 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000145", - "lbl": "34 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "34 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000146", - "lbl": "35 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "35 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000147", - "lbl": "36 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "36 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000148", - "lbl": "37 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "37 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000149", - "lbl": "38 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "38 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000150", - "lbl": "39 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "39 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000151", - "lbl": "40 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "40 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000152", - "lbl": "41 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "41 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000153", - "lbl": "42 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "42 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000154", - "lbl": "43 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "43 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000155", - "lbl": "44 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000156", - "lbl": "45 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "45 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000157", - "lbl": "46 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "46 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000158", - "lbl": "47 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "47 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000159", - "lbl": "48 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "48 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000160", - "lbl": "49 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "49 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000161", - "lbl": "50 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "50 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000162", - "lbl": "51 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000163", - "lbl": "52 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "52 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000164", - "lbl": "53 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "53 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000165", - "lbl": "54 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "54 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000166", - "lbl": "55 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "55 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000167", - "lbl": "56 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "56 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000168", - "lbl": "57 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "57 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000169", - "lbl": "58 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "58 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000170", - "lbl": "59 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "59 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000171", - "lbl": "60 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "60 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000172", - "lbl": "61 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "61 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000173", - "lbl": "62 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "62 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000174", - "lbl": "63 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "63 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000175", - "lbl": "64 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "64 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000176", - "lbl": "65 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "65 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000177", - "lbl": "66 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "66 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000178", - "lbl": "67 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "67 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000179", - "lbl": "68 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000180", - "lbl": "69 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "69 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000181", - "lbl": "70 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "70 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000182", - "lbl": "71 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "71 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000183", - "lbl": "72 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "72 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000184", - "lbl": "73 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "73 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000185", - "lbl": "74 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "74 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000186", - "lbl": "75 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "75 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000187", - "lbl": "76 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "76 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000188", - "lbl": "77 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "77 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000189", - "lbl": "78 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "78 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000190", - "lbl": "79 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "79 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000191", - "lbl": "80 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "80 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000192", - "lbl": "81 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "81 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000193", - "lbl": "82 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "82 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000194", - "lbl": "83 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "83 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000195", - "lbl": "84 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "84 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000196", - "lbl": "85 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "85 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000197", - "lbl": "86 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000198", - "lbl": "87 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "87 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000199", - "lbl": "88 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000200", - "lbl": "89 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "89 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000201", - "lbl": "90 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "90 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000202", - "lbl": "91 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "91 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000203", - "lbl": "92 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "92 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000204", - "lbl": "93 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "93 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000205", - "lbl": "94 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "94 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000206", - "lbl": "95 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "95 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000207", - "lbl": "96 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000208", - "lbl": "97 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "97 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000209", - "lbl": "98 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "98 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000210", - "lbl": "99 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "99 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000211", - "lbl": "100 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "100 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000212", - "lbl": "101 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "101 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000213", - "lbl": "102 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "102 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000214", - "lbl": "103 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "103 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000215", - "lbl": "104 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "104 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000216", - "lbl": "105 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "105 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000217", - "lbl": "106 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "106 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000218", - "lbl": "107 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "107 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000219", - "lbl": "108 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "108 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000220", - "lbl": "109 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "109 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000221", - "lbl": "110 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "110 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000222", - "lbl": "111 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "111 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000223", - "lbl": "112 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "112 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000224", - "lbl": "113 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "113 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000225", - "lbl": "114 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "114 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000226", - "lbl": "115 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "115 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000227", - "lbl": "116 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "116 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000228", - "lbl": "117 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "117 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000229", - "lbl": "118 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "118 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000230", - "lbl": "119 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "119 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000231", - "lbl": "120 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "120 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000232", - "lbl": "121 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "121 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000233", - "lbl": "122 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "122 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000234", - "lbl": "123 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "123 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000235", - "lbl": "124 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "124 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000236", - "lbl": "125 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "125 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000237", - "lbl": "126 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "126 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000238", - "lbl": "127 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "127 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000239", - "lbl": "128 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "128 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000240", - "lbl": "129 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "129 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000241", - "lbl": "130 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "130 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000242", - "lbl": "131 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "131 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000243", - "lbl": "132 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "132 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000244", - "lbl": "133 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "133 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000245", - "lbl": "134 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "134 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000246", - "lbl": "135 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "135 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000247", - "lbl": "136 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "136 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000248", - "lbl": "137 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "137 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000249", - "lbl": "138 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "138 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000250", - "lbl": "139 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "139 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000251", - "lbl": "140 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "140 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000252", - "lbl": "141 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "141 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000253", - "lbl": "142 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "142 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000254", - "lbl": "143 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "143 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000255", - "lbl": "144 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "144 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000256", - "lbl": "145 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "145 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000257", - "lbl": "146 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "146 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000258", - "lbl": "147 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "147 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000259", - "lbl": "148 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "148 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000260", - "lbl": "149 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "149 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000261", - "lbl": "150 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "150 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000262", - "lbl": "151 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "151 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000263", - "lbl": "152 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "152 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000264", - "lbl": "153 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "153 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000265", - "lbl": "154 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "154 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000266", - "lbl": "155 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "155 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000267", - "lbl": "156 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "156 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000268", - "lbl": "157 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "157 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000269", - "lbl": "158 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "158 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000270", - "lbl": "159 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "159 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000271", - "lbl": "160 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "160 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000272", - "lbl": "161 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "161 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000273", - "lbl": "162 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "162 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000274", - "lbl": "163 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "163 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000275", - "lbl": "164 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "164 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000276", - "lbl": "165 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "165 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000277", - "lbl": "166 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "166 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000278", - "lbl": "167 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "167 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000279", - "lbl": "168 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "168 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000280", - "lbl": "169 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "169 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000281", - "lbl": "170 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "170 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000282", - "lbl": "171 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "171 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000283", - "lbl": "172 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "172 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000284", - "lbl": "173 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "173 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000285", - "lbl": "174 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "174 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000286", - "lbl": "175 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "175 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000287", - "lbl": "176 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "176 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000288", - "lbl": "177 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "177 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000289", - "lbl": "178 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "178 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000290", - "lbl": "179 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "179 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000291", - "lbl": "180 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "180 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000292", - "lbl": "181 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "181 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000293", - "lbl": "182 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "182 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000294", - "lbl": "183 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "183 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000295", - "lbl": "184 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "184 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000296", - "lbl": "185 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "185 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000297", - "lbl": "186 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "186 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000298", - "lbl": "187 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "187 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000299", - "lbl": "188 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "188 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000300", - "lbl": "189 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "189 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000301", - "lbl": "190 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000302", - "lbl": "191 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "191 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000303", - "lbl": "192 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "192 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000304", - "lbl": "193 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "193 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000305", - "lbl": "194 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "194 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000306", - "lbl": "195 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "195 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000307", - "lbl": "196 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "196 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000308", - "lbl": "197 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "197 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000309", - "lbl": "198 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "198 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000310", - "lbl": "199 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "199 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000311", - "lbl": "200 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "200 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000312", - "lbl": "201 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "201 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000313", - "lbl": "202 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "202 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000314", - "lbl": "203 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "203 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000315", - "lbl": "204 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "204 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000316", - "lbl": "205 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "205 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000317", - "lbl": "206 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "206 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000318", - "lbl": "207 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "207 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000319", - "lbl": "208 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "208 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000320", - "lbl": "209 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "209 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000321", - "lbl": "210 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "210 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000322", - "lbl": "211 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "211 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000323", - "lbl": "212 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "212 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000324", - "lbl": "213 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "213 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000325", - "lbl": "214 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "214 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000326", - "lbl": "215 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "215 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000327", - "lbl": "216 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "216 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000328", - "lbl": "217 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "217 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000329", - "lbl": "218 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "218 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000330", - "lbl": "219 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "219 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000331", - "lbl": "220 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "220 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000332", - "lbl": "221 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "221 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000333", - "lbl": "222 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "222 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000334", - "lbl": "223 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "223 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000335", - "lbl": "224 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "224 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000336", - "lbl": "225 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "225 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000337", - "lbl": "226 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "226 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000338", - "lbl": "227 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "227 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000339", - "lbl": "228 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "228 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000340", - "lbl": "229 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "229 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000341", - "lbl": "230 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "230 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000342", - "lbl": "231 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "231 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000343", - "lbl": "232 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "232 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000344", - "lbl": "233 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "233 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000345", - "lbl": "234 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "234 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000346", - "lbl": "235 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "235 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000347", - "lbl": "236 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "236 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000348", - "lbl": "237 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "237 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000349", - "lbl": "238 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "238 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000350", - "lbl": "239 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "239 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000351", - "lbl": "240 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "240 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000352", - "lbl": "241 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "241 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000353", - "lbl": "242 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "242 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000354", - "lbl": "243 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "243 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000355", - "lbl": "244 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "244 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000356", - "lbl": "245 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "245 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000357", - "lbl": "246 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "246 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000358", - "lbl": "247 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "247 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000359", - "lbl": "248 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "248 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000360", - "lbl": "249 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "249 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000361", - "lbl": "250 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "250 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000362", - "lbl": "251 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "251 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000363", - "lbl": "252 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "252 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000364", - "lbl": "253 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "253 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000365", - "lbl": "254 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "254 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000366", - "lbl": "255 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "255 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000367", - "lbl": "256 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "256 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000368", - "lbl": "257 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "257 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000369", - "lbl": "258 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "258 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000370", - "lbl": "259 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "259 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000371", - "lbl": "260 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "260 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000372", - "lbl": "261 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "261 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000373", - "lbl": "262 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "262 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000374", - "lbl": "263 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "263 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000375", - "lbl": "264 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "264 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000376", - "lbl": "265 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "265 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000377", - "lbl": "266 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "266 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000378", - "lbl": "267 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "267 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000379", - "lbl": "268 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "268 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000380", - "lbl": "269 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "269 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000381", - "lbl": "270 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "270 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000382", - "lbl": "271 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "271 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000383", - "lbl": "272 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "272 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000384", - "lbl": "273 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "273 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000385", - "lbl": "274 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "274 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000386", - "lbl": "275 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "275 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000387", - "lbl": "276 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "276 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000388", - "lbl": "277 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "277 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000389", - "lbl": "278 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "278 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000390", - "lbl": "279 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "279 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000391", - "lbl": "280 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "280 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000392", - "lbl": "281 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "281 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000393", - "lbl": "282 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "282 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000394", - "lbl": "283 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "283 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000395", - "lbl": "284 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "284 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000396", - "lbl": "285 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "285 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000397", - "lbl": "286 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "286 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000398", - "lbl": "287 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "287 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000399", - "lbl": "288 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "288 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000400", - "lbl": "289 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "289 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000401", - "lbl": "290 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "290 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000402", - "lbl": "291 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "291 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000403", - "lbl": "292 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "292 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000404", - "lbl": "293 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "293 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000405", - "lbl": "294 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "294 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000406", - "lbl": "295 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "295 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000407", - "lbl": "296 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "296 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000408", - "lbl": "297 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "297 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000409", - "lbl": "298 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "298 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000410", - "lbl": "299 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "299 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000411", - "lbl": "300 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "300 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000412", - "lbl": "301 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "301 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000413", - "lbl": "302 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "302 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000414", - "lbl": "303 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "303 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000415", - "lbl": "304 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "304 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000416", - "lbl": "305 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "305 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000417", - "lbl": "306 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "306 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000418", - "lbl": "307 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "307 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000419", - "lbl": "308 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "308 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000420", - "lbl": "309 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "309 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000421", - "lbl": "310 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "310 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000422", - "lbl": "311 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "311 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000423", - "lbl": "312 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "312 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000424", - "lbl": "313 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "313 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000425", - "lbl": "314 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "314 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000426", - "lbl": "315 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "315 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000427", - "lbl": "316 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "316 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000428", - "lbl": "317 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "317 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000429", - "lbl": "318 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "318 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000430", - "lbl": "319 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "319 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000431", - "lbl": "320 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "320 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000432", - "lbl": "321 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "321 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000433", - "lbl": "322 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "322 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000434", - "lbl": "323 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "323 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000435", - "lbl": "324 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "324 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000436", - "lbl": "325 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "325 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000437", - "lbl": "326 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "326 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000438", - "lbl": "327 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "327 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000439", - "lbl": "328 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "328 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000440", - "lbl": "329 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "329 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000441", - "lbl": "330 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "330 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000442", - "lbl": "331 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "331 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000443", - "lbl": "332 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "332 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000444", - "lbl": "333 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "333 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000445", - "lbl": "334 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "334 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000446", - "lbl": "335 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "335 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000447", - "lbl": "336 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "336 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000448", - "lbl": "337 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "337 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000449", - "lbl": "338 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "338 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000450", - "lbl": "339 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "339 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000451", - "lbl": "340 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "340 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000452", - "lbl": "341 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "341 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000453", - "lbl": "342 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "342 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000454", - "lbl": "343 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "343 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000455", - "lbl": "344 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "344 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000456", - "lbl": "345 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "345 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000457", - "lbl": "346 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "346 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000458", - "lbl": "347 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "347 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000459", - "lbl": "348 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "348 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000460", - "lbl": "349 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "349 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000461", - "lbl": "350 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "350 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000462", - "lbl": "351 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "351 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000463", - "lbl": "352 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "352 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000464", - "lbl": "353 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "353 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000465", - "lbl": "354 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "354 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000466", - "lbl": "355 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "355 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000467", - "lbl": "356 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "356 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000468", - "lbl": "357 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "357 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000469", - "lbl": "358 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "358 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000470", - "lbl": "359 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "359 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000471", - "lbl": "360 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "360 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000472", - "lbl": "361 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "361 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000473", - "lbl": "362 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "362 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000474", - "lbl": "363 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "363 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000475", - "lbl": "364 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "364 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000476", - "lbl": "365 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "365 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000477", - "lbl": "366 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "366 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000478", - "lbl": "367 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "367 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000479", - "lbl": "368 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "368 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000480", - "lbl": "369 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "369 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000481", - "lbl": "370 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "370 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000482", - "lbl": "371 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "371 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000483", - "lbl": "372 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "372 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000484", - "lbl": "373 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "373 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000485", - "lbl": "374 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "374 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000486", - "lbl": "375 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "375 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000487", - "lbl": "376 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "376 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000488", - "lbl": "377 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "377 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000489", - "lbl": "378 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "378 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000490", - "lbl": "379 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "379 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000491", - "lbl": "380 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "380 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000492", - "lbl": "381 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "381 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000493", - "lbl": "382 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "382 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000494", - "lbl": "383 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "383 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000495", - "lbl": "384 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "384 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000496", - "lbl": "385 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "385 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000497", - "lbl": "386 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "386 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000498", - "lbl": "387 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "387 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000499", - "lbl": "388 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "388 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000500", - "lbl": "389 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "389 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000501", - "lbl": "390 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "390 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000502", - "lbl": "391 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "391 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000503", - "lbl": "392 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "392 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000504", - "lbl": "393 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "393 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000505", - "lbl": "394 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "394 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000506", - "lbl": "395 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "395 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000507", - "lbl": "396 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "396 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000508", - "lbl": "397 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "397 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000509", - "lbl": "398 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "398 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000510", - "lbl": "399 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "399 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000511", - "lbl": "400 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "400 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000512", - "lbl": "401 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "401 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000513", - "lbl": "402 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "402 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000514", - "lbl": "403 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "403 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000515", - "lbl": "404 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "404 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000516", - "lbl": "405 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "405 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000517", - "lbl": "406 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "406 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000518", - "lbl": "407 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "407 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000519", - "lbl": "408 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "408 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000520", - "lbl": "409 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "409 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000521", - "lbl": "410 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "410 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000522", - "lbl": "411 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "411 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000523", - "lbl": "412 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "412 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000524", - "lbl": "413 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "413 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000525", - "lbl": "414 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "414 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000526", - "lbl": "415 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "415 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000527", - "lbl": "416 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "416 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000528", - "lbl": "417 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "417 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000529", - "lbl": "418 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "418 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000530", - "lbl": "419 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "419 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000531", - "lbl": "420 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "420 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000532", - "lbl": "421 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "421 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000533", - "lbl": "422 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "422 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000534", - "lbl": "423 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "423 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000535", - "lbl": "424 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "424 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000536", - "lbl": "425 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "425 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000537", - "lbl": "426 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "426 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000538", - "lbl": "427 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "427 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000539", - "lbl": "428 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "428 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000540", - "lbl": "429 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "429 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000541", - "lbl": "430 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "430 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000542", - "lbl": "431 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "431 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000543", - "lbl": "432 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "432 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000544", - "lbl": "433 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "433 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000545", - "lbl": "434 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "434 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000546", - "lbl": "435 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "435 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000547", - "lbl": "436 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "436 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000548", - "lbl": "437 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "437 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000549", - "lbl": "438 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "438 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000550", - "lbl": "439 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "439 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000551", - "lbl": "440 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "440 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000552", - "lbl": "441 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "441 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000553", - "lbl": "442 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "442 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000554", - "lbl": "443 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "443 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000555", - "lbl": "444 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "444 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000556", - "lbl": "445 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "445 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000557", - "lbl": "446 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "446 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000558", - "lbl": "447 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "447 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000559", - "lbl": "448 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "448 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000560", - "lbl": "449 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "449 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000561", - "lbl": "450 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "450 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000562", - "lbl": "451 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "451 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000563", - "lbl": "452 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "452 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000564", - "lbl": "453 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "453 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000565", - "lbl": "454 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "454 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000566", - "lbl": "455 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "455 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000567", - "lbl": "456 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "456 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000568", - "lbl": "457 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "457 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000569", - "lbl": "458 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "458 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000570", - "lbl": "459 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "459 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000571", - "lbl": "460 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "460 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000572", - "lbl": "461 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "461 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000573", - "lbl": "462 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "462 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000574", - "lbl": "463 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "463 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000575", - "lbl": "464 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "464 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000576", - "lbl": "465 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "465 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000577", - "lbl": "466 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "466 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000578", - "lbl": "467 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "467 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000579", - "lbl": "468 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "468 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000580", - "lbl": "469 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "469 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000581", - "lbl": "470 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "470 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000582", - "lbl": "471 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "471 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000583", - "lbl": "472 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "472 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000584", - "lbl": "473 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "473 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000585", - "lbl": "474 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "474 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000586", - "lbl": "475 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "475 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000587", - "lbl": "476 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "476 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000588", - "lbl": "477 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "477 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000589", - "lbl": "478 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "478 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000590", - "lbl": "479 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "479 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000591", - "lbl": "480 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "480 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000592", - "lbl": "481 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "481 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000593", - "lbl": "482 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "482 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000594", - "lbl": "483 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "483 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000595", - "lbl": "484 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "484 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000596", - "lbl": "485 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "485 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000597", - "lbl": "486 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "486 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000598", - "lbl": "487 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "487 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000599", - "lbl": "488 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "488 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000600", - "lbl": "489 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "489 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000601", - "lbl": "490 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "490 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000602", - "lbl": "491 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "491 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000603", - "lbl": "492 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "492 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000604", - "lbl": "493 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "493 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000605", - "lbl": "494 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "494 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000606", - "lbl": "495 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "495 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000607", - "lbl": "496 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "496 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000608", - "lbl": "497 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "497 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000609", - "lbl": "498 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "498 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000610", - "lbl": "499 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "499 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000611", - "lbl": "500 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "500 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000612", - "lbl": "501 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "501 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000613", - "lbl": "502 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "502 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000614", - "lbl": "503 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "503 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000615", - "lbl": "504 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "504 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000616", - "lbl": "505 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "505 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000617", - "lbl": "506 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "506 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000618", - "lbl": "507 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "507 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000619", - "lbl": "508 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "508 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000620", - "lbl": "509 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "509 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000621", - "lbl": "510 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "510 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000622", - "lbl": "511 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "511 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000623", - "lbl": "512 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "512 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000624", - "lbl": "513 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "513 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000625", - "lbl": "514 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "514 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000626", - "lbl": "515 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "515 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000627", - "lbl": "516 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "516 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000628", - "lbl": "517 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "517 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000629", - "lbl": "518 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "518 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000630", - "lbl": "519 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "519 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000631", - "lbl": "520 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "520 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000632", - "lbl": "521 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "521 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000633", - "lbl": "522 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "522 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000634", - "lbl": "523 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "523 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000635", - "lbl": "524 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "524 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000636", - "lbl": "525 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "525 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000637", - "lbl": "526 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "526 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000638", - "lbl": "527 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "527 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000639", - "lbl": "528 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "528 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000640", - "lbl": "529 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "529 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000641", - "lbl": "530 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "530 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000642", - "lbl": "531 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "531 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000643", - "lbl": "532 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "532 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000644", - "lbl": "533 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "533 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000645", - "lbl": "534 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "534 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000646", - "lbl": "535 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "535 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000647", - "lbl": "536 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "536 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000648", - "lbl": "537 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "537 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000649", - "lbl": "538 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "538 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000650", - "lbl": "539 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "539 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000651", - "lbl": "540 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "540 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000652", - "lbl": "541 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "541 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000653", - "lbl": "542 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "542 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000654", - "lbl": "543 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "543 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000655", - "lbl": "544 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "544 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000656", - "lbl": "545 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "545 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000657", - "lbl": "546 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "546 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000658", - "lbl": "547 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "547 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000659", - "lbl": "548 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "548 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000660", - "lbl": "549 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "549 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000661", - "lbl": "550 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "550 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000663", - "lbl": "Brugia unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-10T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000078" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unsheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia mature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "mature microfilaria Bma" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000664", - "lbl": "microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." - ], - "definition": { - "val": "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000665", - "lbl": "Brugia microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:25:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000666", - "lbl": "unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:50:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000667", - "lbl": "nodular microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found in nodules and ulcers.", - "xrefs": [ - "PMID:1796232", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae" - }, - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000668", - "lbl": "skin microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found subcutaneously", - "xrefs": [ - "PMID:20772951", - "PMID:7797912", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "skin microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000669", - "lbl": "unfertilized egg Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-26T11:49:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unfertilized egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000670", - "lbl": "6-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000671", - "lbl": "7-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000672", - "lbl": "8-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000673", - "lbl": "9-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000674", - "lbl": "10-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000675", - "lbl": "15-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000676", - "lbl": "20-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000677", - "lbl": "Strongyloides free-living stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:51:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000678", - "lbl": "Strongyloides parasitic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:52:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000679", - "lbl": "nematode infective stage larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:21:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Host organism here refers to the main host organism rather than intermediate hosts." - ], - "definition": { - "val": "Larval stage that is capable of infecting a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasNarrowSynonym", - "val": "infective larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000680", - "lbl": "Strongyloides infective L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:27:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "infective L3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides iL3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides infective stage larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000681", - "lbl": "Strongyloides parasitic female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:36:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic female" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000682", - "lbl": "Strongyloides free-living adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:48:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living adult" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides free-living L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000683", - "lbl": "L4.0 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:03:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.0 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000684", - "lbl": "L4.1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:06:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000685", - "lbl": "L4.2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:09:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000686", - "lbl": "L4.3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:10:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000687", - "lbl": "L4.4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:11:12Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000688", - "lbl": "L4.5 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:13:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.5 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000689", - "lbl": "L4.6 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:15:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.6 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000690", - "lbl": "L4.7 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:16:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.7 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000691", - "lbl": "L4.8 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:18:02Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.8 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000692", - "lbl": "L4.9 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:20:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.9 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000693", - "lbl": "560 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T09:27:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "560 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000694", - "lbl": "570 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T10:07:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "570 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000695", - "lbl": "640 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:08:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "640 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000696", - "lbl": "650 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:11:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "650 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000697", - "lbl": "660 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:13:05Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "660 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000698", - "lbl": "720 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:16:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "720 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000699", - "lbl": "770 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:18:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "770 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000700", - "lbl": "780 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:23:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "780 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000701", - "lbl": "820 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:25:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "820 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000702", - "lbl": "830 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:28:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "830 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000703", - "lbl": "850 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:30:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "850 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000704", - "lbl": "Platyhelminthes life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:14:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in Platyhelminthes (flatworms).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "Platyhelminthes developmental stage" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000705", - "lbl": "Platyhelminthes egg", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:17:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "egg" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000706", - "lbl": "miracidium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:35:26Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000707", - "lbl": "sporocyst", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:42:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000708", - "lbl": "cercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:44:51Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "cercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000709", - "lbl": "schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:46:43Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "somule" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000710", - "lbl": "Platyhelminthes adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:51:21Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000711", - "lbl": "Digenean life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:11:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Digeneans include the Schistosomatidae (blood flukes)." - ], - "definition": { - "val": "A developmental stage of a Digenean (fluke).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "fluke life stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000712", - "lbl": "Cestoda life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:18:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a Cestode (tapeworm).", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000713", - "lbl": "oncosphere", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T13:42:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "hexcanth" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000714", - "lbl": "hydatid cyst stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:27:42Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "hydatid cyst" - }, - { - "pred": "hasExactSynonym", - "val": "metacestode vesicle" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000715", - "lbl": "protoscolex stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:40:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "protoscolex" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000716", - "lbl": "metacestode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T15:02:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:070202788X", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacestode stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000717", - "lbl": "cysticercoid stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-18T11:15:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000718", - "lbl": "newly excysted juveniles", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:02:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "NEJ" - }, - { - "pred": "hasExactSynonym", - "val": "newly emerged juveniles" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000719", - "lbl": "juvenile fluke", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:56:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000720", - "lbl": "metacercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T13:01:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000721", - "lbl": "obsolete nematode adult intestinal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:03:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult intestinal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000722", - "lbl": "obsolete nematode adult lumenal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:13:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult lumenal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000723", - "lbl": "Onchocerca embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:22:55Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000724", - "lbl": "3 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:54:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "3 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000017" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000725", - "lbl": "24 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:56:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "24 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000172" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000726", - "lbl": "Onchocerca post-embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:23:56Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca post-embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000727", - "lbl": "Onchocerca microfilaria (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:24:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000728", - "lbl": "Onchocerca microfilaria (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:28:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000729", - "lbl": "Strongyloides free living adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:28:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000730", - "lbl": "Onchocerca L1 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L1 larvae that develop from the microfilariae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000731", - "lbl": "Onchocerca L2 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:40:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L2 larvae that develops from the L1 larvae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000732", - "lbl": "Onchocerca L3 larva (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:45:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000733", - "lbl": "Onchocerca L3 larva (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:48:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000734", - "lbl": "Onchocerca L3 larva in vitro cultured D1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:50:17Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000735", - "lbl": "Onchocerca L3 larva in vitro cultured D2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:51:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000736", - "lbl": "Onchocerca L3 larva in vitro cultured D3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:53:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000737", - "lbl": "Onchocerca L4 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:59:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L4 larvae that develop from L3 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000738", - "lbl": "Onchocerca L4 larva in vitro cultured", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:01:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000739", - "lbl": "Onchocerca adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:02:24Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000740", - "lbl": "Onchocerca adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:03:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000741", - "lbl": "Onchocerca life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:18:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a nematode of the Onchocerca genus.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000742", - "lbl": "Strongyloides free living adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:34:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000793", - "lbl": "Strongyloides post free-living L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:38:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post free-living L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000794", - "lbl": "Strongyloides post parasitic L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:39:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000795", - "lbl": "Strongyloides post parasitic L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:55:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000796", - "lbl": "Strongyloides post free-living L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:57:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000797", - "lbl": "11-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000798", - "lbl": "12-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000799", - "lbl": "13-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:11Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000800", - "lbl": "14-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000801", - "lbl": "newly hatched L1 larval stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", - "xrefs": [ - "PMC:4492366", - "WA:Wormatlas", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000802", - "lbl": "L1 arrest Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:15:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", - "xrefs": [ - "PMC:3697962", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 diapause" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000803", - "lbl": "C. elegans life stage occurring during embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000804", - "lbl": "C. elegans life stage occurring post embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs after embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000805", - "lbl": "C. elegans life stage occurring during elongating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000806", - "lbl": "C. elegans life stage occurring during 1.5-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000807", - "lbl": "C. elegans life stage occurring during 2-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 2-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000808", - "lbl": "C. elegans life stage occurring during 3-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 3-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000809", - "lbl": "C. elegans life stage occurring during bean embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the bean embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000810", - "lbl": "C. elegans life stage occurring during comma embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the comma embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000811", - "lbl": "C. elegans life stage occurring during fully-elongated embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the fully-elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000812", - "lbl": "C. elegans life stage occurring during proliferating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the proliferating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000813", - "lbl": "C. elegans life stage occurring during blastula embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the blastula embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000814", - "lbl": "C. elegans life stage occurring during gastrulation", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the gastrulating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000815", - "lbl": "C. elegans life stage occurring during enclosing embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the enclosing embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000816", - "lbl": "C. elegans life stage occurring during adulthood", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the adult life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000817", - "lbl": "C. elegans life stage occurring during larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000818", - "lbl": "C. elegans life stage occurring during L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L1 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000819", - "lbl": "C. elegans life stage occurring during L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L2 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000820", - "lbl": "C. elegans life stage occurring during L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L3 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000821", - "lbl": "C. elegans life stage occurring during L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L4 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000822", - "lbl": "C. elegans life stage by minutes post first cleavage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000823", - "lbl": "C. elegans life stage by number of cells", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage classified by the number of cells in the organism.", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000824", - "lbl": "C. elegans life stage occurring during larval molt", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage that occurs during a larval molt", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000825", - "lbl": "C. elegans life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A life stage of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000826", - "lbl": "obsolete set of worm life stages", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000827", - "lbl": "post dauer stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000828", - "lbl": "post dauer L4 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL4" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000829", - "lbl": "post dauer adult stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/IAO_0000115", - "lbl": "definition", - "type": "PROPERTY" - }, - { - "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" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000078", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000663" - } - ], - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000662", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000077" - } - ], - "deprecated": true - }, - "type": "CLASS" - } - ] - } - ] -} + "graphs" : [ { + "id" : "http://purl.obolibrary.org/obo/wbls/wbls-base.json", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000700", + "val" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "pred" : "http://purl.org/dc/elements/1.1/description", + "val" : "Ontology about the development and life stages of the C. elegans" + }, { + "pred" : "http://purl.org/dc/elements/1.1/title", + "val" : "C. elegans Development Ontology" + }, { + "pred" : "http://purl.org/dc/elements/1.1/type", + "val" : "http://purl.obolibrary.org/obo/IAO_8000001" + }, { + "pred" : "http://purl.org/dc/terms/license", + "val" : "http://creativecommons.org/licenses/by/4.0/" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", + "val" : "OBO-Edit 2.2-rc1" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#date", + "val" : "15:11:2017 12:24" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#default-namespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", + "val" : "1.2" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#saved-by", + "val" : "chris-grove" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Version: 1.04" + }, { + "pred" : "http://www.w3.org/2002/07/owl#versionInfo", + "val" : "2023-04-11" + } ], + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2023-04-11/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", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely outside of a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:42:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000002", + "lbl" : "all stages Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "All C. elegans development stages, including embryo, larva and adult stage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000003", + "lbl" : "embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000004", + "lbl" : "proliferating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "proliferating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000005", + "lbl" : "blastula embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "blastula embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000006", + "lbl" : "1-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-cell embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "fertilized egg", + "xrefs" : [ "WB:dr" ] + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000007", + "lbl" : "2-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000008", + "lbl" : "4-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000009", + "lbl" : "28-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000010", + "lbl" : "gastrulating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "gastrulating embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000011", + "lbl" : "51-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000012", + "lbl" : "88-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000013", + "lbl" : "enclosing embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "enclosing embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000014", + "lbl" : "late cleavage stage embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late cleavage stage embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000015", + "lbl" : "elongating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "elongating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "mid embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000016", + "lbl" : "bean embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "bean embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000017", + "lbl" : "comma embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "comma embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000018", + "lbl" : "1.5-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1.5-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000019", + "lbl" : "2-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000020", + "lbl" : "3-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000021", + "lbl" : "fully-elongated embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "fully-elongated embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "morphogenetic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "pre-hatched embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000022", + "lbl" : "postembryonic Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000023", + "lbl" : "larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000024", + "lbl" : "L1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000025", + "lbl" : "L1-L2 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000026", + "lbl" : "L1-L2 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000027", + "lbl" : "L2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000028", + "lbl" : "L2-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000029", + "lbl" : "L2-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000030", + "lbl" : "L2d-dauer lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000031", + "lbl" : "L2d-dauer molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000032", + "lbl" : "dauer larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A third stage larva specialized for dispersal and long term survival.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "dauer larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000033", + "lbl" : "postdauer-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000034", + "lbl" : "postdauer-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000035", + "lbl" : "L3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000036", + "lbl" : "L3-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000037", + "lbl" : "L3-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000038", + "lbl" : "L4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000039", + "lbl" : "L4-adult lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000040", + "lbl" : "L4-adult molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000041", + "lbl" : "adult Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000042", + "lbl" : "L1-L2 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000043", + "lbl" : "L1-L2d molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000044", + "lbl" : "L1-L2d lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000045", + "lbl" : "L1-L2d ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000046", + "lbl" : "L2d larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000047", + "lbl" : "L2-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000048", + "lbl" : "L2d-dauer ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000049", + "lbl" : "L3-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000050", + "lbl" : "L4-adult ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000051", + "lbl" : "postdauer-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000052", + "lbl" : "post dauer L3 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", + "xrefs" : [ "PMID:27417559", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL3" + }, { + "pred" : "hasExactSynonym", + "val" : "dauer exit" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000053", + "lbl" : "L2d-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000054", + "lbl" : "L2d-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000055", + "lbl" : "L2d-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000056", + "lbl" : "adult male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an male animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000057", + "lbl" : "adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000058", + "lbl" : "pre-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "pre-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000059", + "lbl" : "parasitic nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:44:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000060", + "lbl" : "reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000061", + "lbl" : "oocyte-laying stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "oocyte-laying stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000062", + "lbl" : "post-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000063", + "lbl" : "newly molted young adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 0-24 hours after L4-adult molt.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "newly molted young adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000064", + "lbl" : "1-day post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-day post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000065", + "lbl" : "2-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000066", + "lbl" : "3-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000067", + "lbl" : "4-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000068", + "lbl" : "5-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000069", + "lbl" : "4-7 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-7 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000070", + "lbl" : "7-10 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-10 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000071", + "lbl" : "8-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000072", + "lbl" : "12-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000073", + "lbl" : "L4 larva male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000074", + "lbl" : "11-15 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-22T14:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000075", + "lbl" : "worm life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of a worm", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000076", + "lbl" : "Strongyloides life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Strongyloides developmental stage, including free-living and parasitic stages.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages Strongyloides" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:49:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000077", + "lbl" : "Brugia sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "sheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia immature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "immature microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000662" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000078", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000663" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000079", + "lbl" : "Brugia L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1" + }, { + "pred" : "hasExactSynonym", + "val" : "L1 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000080", + "lbl" : "Brugia L2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2" + }, { + "pred" : "hasExactSynonym", + "val" : "L2 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:30:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000081", + "lbl" : "Brugia L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3" + }, { + "pred" : "hasExactSynonym", + "val" : "L3 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000082", + "lbl" : "Brugia L4", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4" + }, { + "pred" : "hasExactSynonym", + "val" : "L4 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:38Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000083", + "lbl" : "Brugia adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:32:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000084", + "lbl" : "14-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "E-cell has divided into Ea and Ep. Contains 14 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:15:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000085", + "lbl" : "24-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fourth cleavage of the AB lineage. Contains 24 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:23:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000086", + "lbl" : "44-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fifth cleavage of the AB lineage. Contains 44 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:25:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000087", + "lbl" : "68-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Sixth cleavage of the AB lineage. Contains 68 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:26:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000088", + "lbl" : "86-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Seventh cleavage of the AB lineage. Contains 86 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:27:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000089", + "lbl" : "190-cells embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "P4 and M cells have finished migrating. Contains 190 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190-cells embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-15T13:19:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000090", + "lbl" : "96-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-16T15:37:30Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000091", + "lbl" : "Brugia life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Brugia developmental stage, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T03:18:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000092", + "lbl" : "Brugia embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:48:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000093", + "lbl" : "Brugia postembryonic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "postembryonic Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:50:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000094", + "lbl" : "Brugia early embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "early embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:55:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000095", + "lbl" : "Brugia middle embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Proliferates from 100 cells to Lima bean stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "middle embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "middle embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:59:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000096", + "lbl" : "Brugia late embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "From Lima bean to hatching.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:00:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000097", + "lbl" : "Brugia larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:12:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000098", + "lbl" : "Brugia L3i", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3i" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia vector-derived L3" + }, { + "pred" : "hasExactSynonym", + "val" : "vector-derived L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "iL3" + }, { + "pred" : "hasRelatedSynonym", + "val" : "infective L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:23:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000099", + "lbl" : "Brugia post-infection L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-infection L3" + }, { + "pred" : "hasExactSynonym", + "val" : "post-infection L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "piL3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:24:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000100", + "lbl" : "Brugia young adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "young adult" + }, { + "pred" : "hasExactSynonym", + "val" : "young adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:37:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000101", + "lbl" : "Nematode life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in a nematode, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:13:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000102", + "lbl" : "nematode embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "embryo nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode egg stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000103", + "lbl" : "postembryonic nematode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a nematode that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:39Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000104", + "lbl" : "nematode adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L5" + }, { + "pred" : "hasExactSynonym", + "val" : "adult nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:18:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000105", + "lbl" : "nematode larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins after hatching and ends when the nematode becomes adult.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:19:27Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000106", + "lbl" : "L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000107", + "lbl" : "L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L2 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000108", + "lbl" : "L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L3 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:21:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000109", + "lbl" : "L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L4 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:22:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000110", + "lbl" : "sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:23:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000111", + "lbl" : "16-18 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16-18 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000112", + "lbl" : "1 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000113", + "lbl" : "2 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000114", + "lbl" : "3 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000115", + "lbl" : "4 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000116", + "lbl" : "5 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000117", + "lbl" : "6 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000118", + "lbl" : "7 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000119", + "lbl" : "8 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000120", + "lbl" : "9 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000121", + "lbl" : "10 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000122", + "lbl" : "11 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000123", + "lbl" : "12 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000124", + "lbl" : "13 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000125", + "lbl" : "14 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000126", + "lbl" : "15 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000127", + "lbl" : "16 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000128", + "lbl" : "17 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "17 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000129", + "lbl" : "18 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "18 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000130", + "lbl" : "19 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "19 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000131", + "lbl" : "20 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000132", + "lbl" : "21 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "21 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000133", + "lbl" : "22 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "22 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000134", + "lbl" : "23 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "23 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000135", + "lbl" : "24 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000136", + "lbl" : "25 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "25 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000137", + "lbl" : "26 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "26 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000138", + "lbl" : "27 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "27 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000139", + "lbl" : "28 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000140", + "lbl" : "29 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "29 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000141", + "lbl" : "30 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "30 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000142", + "lbl" : "31 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "31 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000143", + "lbl" : "32 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "32 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000144", + "lbl" : "33 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "33 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000145", + "lbl" : "34 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "34 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000146", + "lbl" : "35 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "35 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000147", + "lbl" : "36 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "36 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000148", + "lbl" : "37 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "37 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000149", + "lbl" : "38 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "38 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000150", + "lbl" : "39 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "39 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000151", + "lbl" : "40 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "40 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000152", + "lbl" : "41 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "41 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000153", + "lbl" : "42 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "42 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000154", + "lbl" : "43 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "43 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000155", + "lbl" : "44 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000156", + "lbl" : "45 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "45 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000157", + "lbl" : "46 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "46 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000158", + "lbl" : "47 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "47 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000159", + "lbl" : "48 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "48 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000160", + "lbl" : "49 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "49 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000161", + "lbl" : "50 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "50 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000162", + "lbl" : "51 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000163", + "lbl" : "52 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "52 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000164", + "lbl" : "53 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "53 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000165", + "lbl" : "54 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "54 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000166", + "lbl" : "55 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "55 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000167", + "lbl" : "56 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "56 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000168", + "lbl" : "57 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "57 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000169", + "lbl" : "58 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "58 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000170", + "lbl" : "59 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "59 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000171", + "lbl" : "60 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "60 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000172", + "lbl" : "61 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "61 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000173", + "lbl" : "62 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "62 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000174", + "lbl" : "63 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "63 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000175", + "lbl" : "64 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "64 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000176", + "lbl" : "65 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "65 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000177", + "lbl" : "66 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "66 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000178", + "lbl" : "67 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "67 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000179", + "lbl" : "68 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000180", + "lbl" : "69 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "69 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000181", + "lbl" : "70 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "70 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000182", + "lbl" : "71 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "71 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000183", + "lbl" : "72 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "72 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000184", + "lbl" : "73 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "73 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000185", + "lbl" : "74 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "74 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000186", + "lbl" : "75 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "75 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000187", + "lbl" : "76 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "76 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000188", + "lbl" : "77 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "77 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000189", + "lbl" : "78 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "78 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000190", + "lbl" : "79 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "79 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000191", + "lbl" : "80 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "80 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000192", + "lbl" : "81 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "81 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000193", + "lbl" : "82 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "82 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000194", + "lbl" : "83 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "83 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000195", + "lbl" : "84 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "84 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000196", + "lbl" : "85 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "85 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000197", + "lbl" : "86 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000198", + "lbl" : "87 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "87 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000199", + "lbl" : "88 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000200", + "lbl" : "89 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "89 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000201", + "lbl" : "90 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "90 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000202", + "lbl" : "91 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "91 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000203", + "lbl" : "92 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "92 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000204", + "lbl" : "93 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "93 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000205", + "lbl" : "94 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "94 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000206", + "lbl" : "95 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "95 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000207", + "lbl" : "96 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000208", + "lbl" : "97 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "97 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000209", + "lbl" : "98 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "98 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000210", + "lbl" : "99 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "99 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000211", + "lbl" : "100 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "100 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000212", + "lbl" : "101 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "101 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000213", + "lbl" : "102 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "102 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000214", + "lbl" : "103 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "103 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000215", + "lbl" : "104 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "104 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000216", + "lbl" : "105 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "105 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000217", + "lbl" : "106 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "106 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000218", + "lbl" : "107 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "107 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000219", + "lbl" : "108 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "108 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000220", + "lbl" : "109 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "109 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000221", + "lbl" : "110 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "110 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000222", + "lbl" : "111 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "111 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000223", + "lbl" : "112 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "112 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000224", + "lbl" : "113 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "113 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000225", + "lbl" : "114 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "114 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000226", + "lbl" : "115 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "115 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000227", + "lbl" : "116 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "116 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000228", + "lbl" : "117 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "117 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000229", + "lbl" : "118 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "118 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000230", + "lbl" : "119 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "119 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000231", + "lbl" : "120 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "120 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000232", + "lbl" : "121 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "121 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000233", + "lbl" : "122 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "122 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000234", + "lbl" : "123 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "123 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000235", + "lbl" : "124 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "124 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000236", + "lbl" : "125 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "125 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000237", + "lbl" : "126 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "126 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000238", + "lbl" : "127 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "127 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000239", + "lbl" : "128 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "128 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000240", + "lbl" : "129 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "129 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000241", + "lbl" : "130 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "130 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000242", + "lbl" : "131 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "131 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000243", + "lbl" : "132 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "132 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000244", + "lbl" : "133 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "133 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000245", + "lbl" : "134 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "134 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000246", + "lbl" : "135 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "135 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000247", + "lbl" : "136 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "136 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000248", + "lbl" : "137 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "137 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000249", + "lbl" : "138 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "138 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000250", + "lbl" : "139 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "139 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000251", + "lbl" : "140 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "140 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000252", + "lbl" : "141 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "141 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000253", + "lbl" : "142 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "142 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000254", + "lbl" : "143 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "143 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000255", + "lbl" : "144 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "144 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000256", + "lbl" : "145 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "145 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000257", + "lbl" : "146 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "146 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000258", + "lbl" : "147 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "147 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000259", + "lbl" : "148 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "148 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000260", + "lbl" : "149 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "149 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000261", + "lbl" : "150 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "150 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000262", + "lbl" : "151 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "151 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000263", + "lbl" : "152 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "152 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000264", + "lbl" : "153 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "153 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000265", + "lbl" : "154 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "154 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000266", + "lbl" : "155 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "155 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000267", + "lbl" : "156 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "156 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000268", + "lbl" : "157 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "157 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000269", + "lbl" : "158 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "158 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000270", + "lbl" : "159 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "159 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000271", + "lbl" : "160 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "160 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000272", + "lbl" : "161 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "161 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000273", + "lbl" : "162 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "162 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000274", + "lbl" : "163 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "163 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000275", + "lbl" : "164 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "164 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000276", + "lbl" : "165 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "165 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000277", + "lbl" : "166 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "166 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000278", + "lbl" : "167 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "167 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000279", + "lbl" : "168 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "168 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000280", + "lbl" : "169 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "169 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000281", + "lbl" : "170 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "170 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000282", + "lbl" : "171 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "171 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000283", + "lbl" : "172 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "172 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000284", + "lbl" : "173 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "173 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000285", + "lbl" : "174 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "174 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000286", + "lbl" : "175 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "175 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000287", + "lbl" : "176 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "176 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000288", + "lbl" : "177 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "177 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000289", + "lbl" : "178 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "178 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000290", + "lbl" : "179 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "179 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000291", + "lbl" : "180 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "180 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000292", + "lbl" : "181 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "181 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000293", + "lbl" : "182 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "182 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000294", + "lbl" : "183 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "183 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000295", + "lbl" : "184 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "184 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000296", + "lbl" : "185 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "185 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000297", + "lbl" : "186 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "186 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000298", + "lbl" : "187 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "187 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000299", + "lbl" : "188 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "188 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000300", + "lbl" : "189 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "189 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000301", + "lbl" : "190 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000302", + "lbl" : "191 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "191 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000303", + "lbl" : "192 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "192 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000304", + "lbl" : "193 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "193 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000305", + "lbl" : "194 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "194 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000306", + "lbl" : "195 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "195 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000307", + "lbl" : "196 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "196 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000308", + "lbl" : "197 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "197 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000309", + "lbl" : "198 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "198 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000310", + "lbl" : "199 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "199 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000311", + "lbl" : "200 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "200 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000312", + "lbl" : "201 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "201 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000313", + "lbl" : "202 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "202 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000314", + "lbl" : "203 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "203 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000315", + "lbl" : "204 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "204 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000316", + "lbl" : "205 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "205 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000317", + "lbl" : "206 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "206 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000318", + "lbl" : "207 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "207 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000319", + "lbl" : "208 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "208 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000320", + "lbl" : "209 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "209 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000321", + "lbl" : "210 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "210 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000322", + "lbl" : "211 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "211 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000323", + "lbl" : "212 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "212 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000324", + "lbl" : "213 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "213 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000325", + "lbl" : "214 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "214 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000326", + "lbl" : "215 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "215 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000327", + "lbl" : "216 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "216 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000328", + "lbl" : "217 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "217 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000329", + "lbl" : "218 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "218 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000330", + "lbl" : "219 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "219 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000331", + "lbl" : "220 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "220 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000332", + "lbl" : "221 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "221 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000333", + "lbl" : "222 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "222 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000334", + "lbl" : "223 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "223 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000335", + "lbl" : "224 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "224 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000336", + "lbl" : "225 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "225 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000337", + "lbl" : "226 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "226 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000338", + "lbl" : "227 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "227 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000339", + "lbl" : "228 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "228 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000340", + "lbl" : "229 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "229 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000341", + "lbl" : "230 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "230 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000342", + "lbl" : "231 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "231 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000343", + "lbl" : "232 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "232 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000344", + "lbl" : "233 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "233 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000345", + "lbl" : "234 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "234 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000346", + "lbl" : "235 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "235 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000347", + "lbl" : "236 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "236 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000348", + "lbl" : "237 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "237 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000349", + "lbl" : "238 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "238 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000350", + "lbl" : "239 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "239 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000351", + "lbl" : "240 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "240 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000352", + "lbl" : "241 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "241 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000353", + "lbl" : "242 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "242 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000354", + "lbl" : "243 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "243 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000355", + "lbl" : "244 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "244 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000356", + "lbl" : "245 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "245 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000357", + "lbl" : "246 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "246 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000358", + "lbl" : "247 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "247 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000359", + "lbl" : "248 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "248 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000360", + "lbl" : "249 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "249 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000361", + "lbl" : "250 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "250 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000362", + "lbl" : "251 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "251 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000363", + "lbl" : "252 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "252 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000364", + "lbl" : "253 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "253 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000365", + "lbl" : "254 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "254 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000366", + "lbl" : "255 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "255 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000367", + "lbl" : "256 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "256 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000368", + "lbl" : "257 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "257 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000369", + "lbl" : "258 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "258 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000370", + "lbl" : "259 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "259 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000371", + "lbl" : "260 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "260 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000372", + "lbl" : "261 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "261 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000373", + "lbl" : "262 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "262 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000374", + "lbl" : "263 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "263 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000375", + "lbl" : "264 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "264 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000376", + "lbl" : "265 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "265 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000377", + "lbl" : "266 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "266 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000378", + "lbl" : "267 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "267 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000379", + "lbl" : "268 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "268 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000380", + "lbl" : "269 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "269 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000381", + "lbl" : "270 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "270 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000382", + "lbl" : "271 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "271 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000383", + "lbl" : "272 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "272 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000384", + "lbl" : "273 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "273 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000385", + "lbl" : "274 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "274 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000386", + "lbl" : "275 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "275 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000387", + "lbl" : "276 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "276 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000388", + "lbl" : "277 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "277 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000389", + "lbl" : "278 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "278 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000390", + "lbl" : "279 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "279 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000391", + "lbl" : "280 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "280 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000392", + "lbl" : "281 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "281 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000393", + "lbl" : "282 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "282 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000394", + "lbl" : "283 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "283 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000395", + "lbl" : "284 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "284 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000396", + "lbl" : "285 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "285 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000397", + "lbl" : "286 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "286 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000398", + "lbl" : "287 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "287 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000399", + "lbl" : "288 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "288 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000400", + "lbl" : "289 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "289 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000401", + "lbl" : "290 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "290 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000402", + "lbl" : "291 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "291 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000403", + "lbl" : "292 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "292 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000404", + "lbl" : "293 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "293 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000405", + "lbl" : "294 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "294 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000406", + "lbl" : "295 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "295 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000407", + "lbl" : "296 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "296 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000408", + "lbl" : "297 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "297 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000409", + "lbl" : "298 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "298 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000410", + "lbl" : "299 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "299 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000411", + "lbl" : "300 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "300 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000412", + "lbl" : "301 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "301 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000413", + "lbl" : "302 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "302 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000414", + "lbl" : "303 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "303 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000415", + "lbl" : "304 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "304 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000416", + "lbl" : "305 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "305 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000417", + "lbl" : "306 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "306 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000418", + "lbl" : "307 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "307 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000419", + "lbl" : "308 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "308 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000420", + "lbl" : "309 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "309 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000421", + "lbl" : "310 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "310 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000422", + "lbl" : "311 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "311 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000423", + "lbl" : "312 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "312 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000424", + "lbl" : "313 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "313 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000425", + "lbl" : "314 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "314 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000426", + "lbl" : "315 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "315 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000427", + "lbl" : "316 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "316 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000428", + "lbl" : "317 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "317 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000429", + "lbl" : "318 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "318 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000430", + "lbl" : "319 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "319 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000431", + "lbl" : "320 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "320 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000432", + "lbl" : "321 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "321 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000433", + "lbl" : "322 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "322 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000434", + "lbl" : "323 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "323 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000435", + "lbl" : "324 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "324 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000436", + "lbl" : "325 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "325 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000437", + "lbl" : "326 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "326 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000438", + "lbl" : "327 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "327 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000439", + "lbl" : "328 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "328 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000440", + "lbl" : "329 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "329 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000441", + "lbl" : "330 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "330 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000442", + "lbl" : "331 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "331 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000443", + "lbl" : "332 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "332 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000444", + "lbl" : "333 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "333 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000445", + "lbl" : "334 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "334 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000446", + "lbl" : "335 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "335 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000447", + "lbl" : "336 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "336 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000448", + "lbl" : "337 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "337 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000449", + "lbl" : "338 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "338 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000450", + "lbl" : "339 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "339 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000451", + "lbl" : "340 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "340 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000452", + "lbl" : "341 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "341 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000453", + "lbl" : "342 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "342 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000454", + "lbl" : "343 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "343 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000455", + "lbl" : "344 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "344 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000456", + "lbl" : "345 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "345 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000457", + "lbl" : "346 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "346 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000458", + "lbl" : "347 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "347 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000459", + "lbl" : "348 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "348 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000460", + "lbl" : "349 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "349 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000461", + "lbl" : "350 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "350 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000462", + "lbl" : "351 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "351 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000463", + "lbl" : "352 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "352 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000464", + "lbl" : "353 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "353 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000465", + "lbl" : "354 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "354 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000466", + "lbl" : "355 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "355 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000467", + "lbl" : "356 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "356 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000468", + "lbl" : "357 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "357 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000469", + "lbl" : "358 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "358 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000470", + "lbl" : "359 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "359 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000471", + "lbl" : "360 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "360 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000472", + "lbl" : "361 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "361 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000473", + "lbl" : "362 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "362 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000474", + "lbl" : "363 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "363 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000475", + "lbl" : "364 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "364 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000476", + "lbl" : "365 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "365 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000477", + "lbl" : "366 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "366 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000478", + "lbl" : "367 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "367 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000479", + "lbl" : "368 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "368 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000480", + "lbl" : "369 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "369 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000481", + "lbl" : "370 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "370 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000482", + "lbl" : "371 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "371 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000483", + "lbl" : "372 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "372 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000484", + "lbl" : "373 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "373 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000485", + "lbl" : "374 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "374 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000486", + "lbl" : "375 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "375 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000487", + "lbl" : "376 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "376 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000488", + "lbl" : "377 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "377 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000489", + "lbl" : "378 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "378 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000490", + "lbl" : "379 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "379 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000491", + "lbl" : "380 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "380 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000492", + "lbl" : "381 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "381 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000493", + "lbl" : "382 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "382 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000494", + "lbl" : "383 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "383 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000495", + "lbl" : "384 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "384 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000496", + "lbl" : "385 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "385 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000497", + "lbl" : "386 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "386 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000498", + "lbl" : "387 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "387 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000499", + "lbl" : "388 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "388 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000500", + "lbl" : "389 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "389 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000501", + "lbl" : "390 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "390 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000502", + "lbl" : "391 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "391 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000503", + "lbl" : "392 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "392 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000504", + "lbl" : "393 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "393 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000505", + "lbl" : "394 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "394 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000506", + "lbl" : "395 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "395 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000507", + "lbl" : "396 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "396 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000508", + "lbl" : "397 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "397 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000509", + "lbl" : "398 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "398 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000510", + "lbl" : "399 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "399 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000511", + "lbl" : "400 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "400 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000512", + "lbl" : "401 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "401 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000513", + "lbl" : "402 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "402 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000514", + "lbl" : "403 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "403 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000515", + "lbl" : "404 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "404 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000516", + "lbl" : "405 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "405 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000517", + "lbl" : "406 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "406 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000518", + "lbl" : "407 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "407 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000519", + "lbl" : "408 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "408 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000520", + "lbl" : "409 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "409 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000521", + "lbl" : "410 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "410 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000522", + "lbl" : "411 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "411 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000523", + "lbl" : "412 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "412 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000524", + "lbl" : "413 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "413 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000525", + "lbl" : "414 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "414 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000526", + "lbl" : "415 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "415 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000527", + "lbl" : "416 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "416 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000528", + "lbl" : "417 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "417 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000529", + "lbl" : "418 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "418 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000530", + "lbl" : "419 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "419 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000531", + "lbl" : "420 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "420 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000532", + "lbl" : "421 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "421 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000533", + "lbl" : "422 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "422 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000534", + "lbl" : "423 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "423 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000535", + "lbl" : "424 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "424 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000536", + "lbl" : "425 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "425 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000537", + "lbl" : "426 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "426 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000538", + "lbl" : "427 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "427 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000539", + "lbl" : "428 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "428 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000540", + "lbl" : "429 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "429 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000541", + "lbl" : "430 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "430 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000542", + "lbl" : "431 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "431 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000543", + "lbl" : "432 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "432 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000544", + "lbl" : "433 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "433 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000545", + "lbl" : "434 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "434 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000546", + "lbl" : "435 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "435 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000547", + "lbl" : "436 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "436 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000548", + "lbl" : "437 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "437 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000549", + "lbl" : "438 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "438 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000550", + "lbl" : "439 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "439 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000551", + "lbl" : "440 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "440 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000552", + "lbl" : "441 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "441 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000553", + "lbl" : "442 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "442 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000554", + "lbl" : "443 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "443 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000555", + "lbl" : "444 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "444 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000556", + "lbl" : "445 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "445 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000557", + "lbl" : "446 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "446 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000558", + "lbl" : "447 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "447 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000559", + "lbl" : "448 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "448 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000560", + "lbl" : "449 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "449 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000561", + "lbl" : "450 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "450 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000562", + "lbl" : "451 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "451 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000563", + "lbl" : "452 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "452 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000564", + "lbl" : "453 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "453 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000565", + "lbl" : "454 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "454 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000566", + "lbl" : "455 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "455 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000567", + "lbl" : "456 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "456 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000568", + "lbl" : "457 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "457 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000569", + "lbl" : "458 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "458 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000570", + "lbl" : "459 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "459 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000571", + "lbl" : "460 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "460 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000572", + "lbl" : "461 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "461 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000573", + "lbl" : "462 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "462 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000574", + "lbl" : "463 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "463 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000575", + "lbl" : "464 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "464 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000576", + "lbl" : "465 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "465 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000577", + "lbl" : "466 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "466 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000578", + "lbl" : "467 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "467 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000579", + "lbl" : "468 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "468 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000580", + "lbl" : "469 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "469 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000581", + "lbl" : "470 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "470 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000582", + "lbl" : "471 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "471 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000583", + "lbl" : "472 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "472 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000584", + "lbl" : "473 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "473 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000585", + "lbl" : "474 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "474 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000586", + "lbl" : "475 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "475 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000587", + "lbl" : "476 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "476 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000588", + "lbl" : "477 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "477 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000589", + "lbl" : "478 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "478 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000590", + "lbl" : "479 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "479 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000591", + "lbl" : "480 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "480 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000592", + "lbl" : "481 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "481 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000593", + "lbl" : "482 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "482 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000594", + "lbl" : "483 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "483 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000595", + "lbl" : "484 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "484 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000596", + "lbl" : "485 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "485 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000597", + "lbl" : "486 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "486 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000598", + "lbl" : "487 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "487 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000599", + "lbl" : "488 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "488 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000600", + "lbl" : "489 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "489 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000601", + "lbl" : "490 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "490 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000602", + "lbl" : "491 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "491 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000603", + "lbl" : "492 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "492 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000604", + "lbl" : "493 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "493 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000605", + "lbl" : "494 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "494 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000606", + "lbl" : "495 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "495 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000607", + "lbl" : "496 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "496 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000608", + "lbl" : "497 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "497 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000609", + "lbl" : "498 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "498 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000610", + "lbl" : "499 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "499 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000611", + "lbl" : "500 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "500 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000612", + "lbl" : "501 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "501 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000613", + "lbl" : "502 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "502 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000614", + "lbl" : "503 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "503 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000615", + "lbl" : "504 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "504 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000616", + "lbl" : "505 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "505 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000617", + "lbl" : "506 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "506 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000618", + "lbl" : "507 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "507 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000619", + "lbl" : "508 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "508 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000620", + "lbl" : "509 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "509 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000621", + "lbl" : "510 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "510 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000622", + "lbl" : "511 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "511 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000623", + "lbl" : "512 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "512 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000624", + "lbl" : "513 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "513 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000625", + "lbl" : "514 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "514 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000626", + "lbl" : "515 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "515 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000627", + "lbl" : "516 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "516 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000628", + "lbl" : "517 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "517 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000629", + "lbl" : "518 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "518 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000630", + "lbl" : "519 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "519 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000631", + "lbl" : "520 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "520 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000632", + "lbl" : "521 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "521 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000633", + "lbl" : "522 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "522 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000634", + "lbl" : "523 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "523 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000635", + "lbl" : "524 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "524 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000636", + "lbl" : "525 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "525 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000637", + "lbl" : "526 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "526 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000638", + "lbl" : "527 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "527 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000639", + "lbl" : "528 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "528 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000640", + "lbl" : "529 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "529 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000641", + "lbl" : "530 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "530 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000642", + "lbl" : "531 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "531 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000643", + "lbl" : "532 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "532 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000644", + "lbl" : "533 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "533 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000645", + "lbl" : "534 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "534 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000646", + "lbl" : "535 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "535 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000647", + "lbl" : "536 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "536 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000648", + "lbl" : "537 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "537 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000649", + "lbl" : "538 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "538 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000650", + "lbl" : "539 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "539 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000651", + "lbl" : "540 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "540 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000652", + "lbl" : "541 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "541 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000653", + "lbl" : "542 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "542 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000654", + "lbl" : "543 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "543 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000655", + "lbl" : "544 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "544 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000656", + "lbl" : "545 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "545 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000657", + "lbl" : "546 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "546 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000658", + "lbl" : "547 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "547 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000659", + "lbl" : "548 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "548 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000660", + "lbl" : "549 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "549 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000661", + "lbl" : "550 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "550 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000662", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000077" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000663", + "lbl" : "Brugia unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unsheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia mature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "mature microfilaria Bma" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-10T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000078" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000664", + "lbl" : "microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "comments" : [ "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000665", + "lbl" : "Brugia microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:25:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000666", + "lbl" : "unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:50:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000667", + "lbl" : "nodular microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found in nodules and ulcers.", + "xrefs" : [ "PMID:1796232", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae" + }, { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000668", + "lbl" : "skin microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found subcutaneously", + "xrefs" : [ "PMID:20772951", "PMID:7797912", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "skin microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000669", + "lbl" : "unfertilized egg Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unfertilized egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-26T11:49:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000670", + "lbl" : "6-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000671", + "lbl" : "7-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000672", + "lbl" : "8-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000673", + "lbl" : "9-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000674", + "lbl" : "10-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000675", + "lbl" : "15-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000676", + "lbl" : "20-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000677", + "lbl" : "Strongyloides free-living stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:51:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000678", + "lbl" : "Strongyloides parasitic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:52:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000679", + "lbl" : "nematode infective stage larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larval stage that is capable of infecting a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Host organism here refers to the main host organism rather than intermediate hosts." ], + "synonyms" : [ { + "pred" : "hasNarrowSynonym", + "val" : "infective larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:21:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000680", + "lbl" : "Strongyloides infective L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "infective L3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides iL3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides infective stage larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:27:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000681", + "lbl" : "Strongyloides parasitic female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic female" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:36:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000682", + "lbl" : "Strongyloides free-living adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living adult" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides free-living L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:48:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000683", + "lbl" : "L4.0 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.0 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:03:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000684", + "lbl" : "L4.1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:06:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000685", + "lbl" : "L4.2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:09:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000686", + "lbl" : "L4.3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:10:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000687", + "lbl" : "L4.4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:11:12Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000688", + "lbl" : "L4.5 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.5 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:13:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000689", + "lbl" : "L4.6 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.6 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:15:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000690", + "lbl" : "L4.7 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.7 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:16:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000691", + "lbl" : "L4.8 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.8 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:18:02Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000692", + "lbl" : "L4.9 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.9 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:20:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000693", + "lbl" : "560 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "560 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T09:27:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000694", + "lbl" : "570 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "570 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T10:07:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000695", + "lbl" : "640 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "640 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:08:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000696", + "lbl" : "650 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "650 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:11:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000697", + "lbl" : "660 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "660 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:13:05Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000698", + "lbl" : "720 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "720 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:16:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000699", + "lbl" : "770 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "770 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:18:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000700", + "lbl" : "780 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "780 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:23:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000701", + "lbl" : "820 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "820 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:25:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000702", + "lbl" : "830 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "830 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:28:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000703", + "lbl" : "850 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "850 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:30:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000704", + "lbl" : "Platyhelminthes life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in Platyhelminthes (flatworms).", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "Platyhelminthes developmental stage" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:14:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000705", + "lbl" : "Platyhelminthes egg", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "egg" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:17:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000706", + "lbl" : "miracidium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:35:26Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000707", + "lbl" : "sporocyst", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:42:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000708", + "lbl" : "cercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "cercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:44:51Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000709", + "lbl" : "schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "somule" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:46:43Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000710", + "lbl" : "Platyhelminthes adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:51:21Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000711", + "lbl" : "Digenean life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental stage of a Digenean (fluke).", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Digeneans include the Schistosomatidae (blood flukes)." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "fluke life stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:11:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000712", + "lbl" : "Cestoda life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a Cestode (tapeworm).", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:18:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000713", + "lbl" : "oncosphere", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "hexcanth" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T13:42:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000714", + "lbl" : "hydatid cyst stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "hydatid cyst" + }, { + "pred" : "hasExactSynonym", + "val" : "metacestode vesicle" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:27:42Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000715", + "lbl" : "protoscolex stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "protoscolex" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:40:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000716", + "lbl" : "metacestode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:070202788X", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacestode stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T15:02:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000717", + "lbl" : "cysticercoid stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-18T11:15:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000718", + "lbl" : "newly excysted juveniles", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "NEJ" + }, { + "pred" : "hasExactSynonym", + "val" : "newly emerged juveniles" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:02:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000719", + "lbl" : "juvenile fluke", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:56:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000720", + "lbl" : "metacercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T13:01:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000721", + "lbl" : "obsolete nematode adult intestinal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult intestinal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:03:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000722", + "lbl" : "obsolete nematode adult lumenal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult lumenal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:13:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000723", + "lbl" : "Onchocerca embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:22:55Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000724", + "lbl" : "3 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "3 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000017" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:54:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000725", + "lbl" : "24 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "24 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000172" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:56:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000726", + "lbl" : "Onchocerca post-embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca post-embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:23:56Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000727", + "lbl" : "Onchocerca microfilaria (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:24:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000728", + "lbl" : "Onchocerca microfilaria (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:28:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000729", + "lbl" : "Strongyloides free living adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:28:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000730", + "lbl" : "Onchocerca L1 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L1 larvae that develop from the microfilariae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000731", + "lbl" : "Onchocerca L2 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L2 larvae that develops from the L1 larvae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:40:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000732", + "lbl" : "Onchocerca L3 larva (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:45:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000733", + "lbl" : "Onchocerca L3 larva (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:48:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000734", + "lbl" : "Onchocerca L3 larva in vitro cultured D1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:50:17Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000735", + "lbl" : "Onchocerca L3 larva in vitro cultured D2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:51:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000736", + "lbl" : "Onchocerca L3 larva in vitro cultured D3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:53:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000737", + "lbl" : "Onchocerca L4 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L4 larvae that develop from L3 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:59:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000738", + "lbl" : "Onchocerca L4 larva in vitro cultured", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:01:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000739", + "lbl" : "Onchocerca adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:02:24Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000740", + "lbl" : "Onchocerca adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:03:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000741", + "lbl" : "Onchocerca life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a nematode of the Onchocerca genus.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:18:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000742", + "lbl" : "Strongyloides free living adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:34:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000793", + "lbl" : "Strongyloides post free-living L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post free-living L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:38:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000794", + "lbl" : "Strongyloides post parasitic L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:39:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000795", + "lbl" : "Strongyloides post parasitic L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:55:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000796", + "lbl" : "Strongyloides post free-living L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:57:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000797", + "lbl" : "11-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000798", + "lbl" : "12-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000799", + "lbl" : "13-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:11Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000800", + "lbl" : "14-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000801", + "lbl" : "newly hatched L1 larval stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", + "xrefs" : [ "PMC:4492366", "WA:Wormatlas", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000802", + "lbl" : "L1 arrest Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", + "xrefs" : [ "PMC:3697962", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 diapause" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:15:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000803", + "lbl" : "C. elegans life stage occurring during embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000804", + "lbl" : "C. elegans life stage occurring post embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs after embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000805", + "lbl" : "C. elegans life stage occurring during elongating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000806", + "lbl" : "C. elegans life stage occurring during 1.5-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000807", + "lbl" : "C. elegans life stage occurring during 2-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 2-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000808", + "lbl" : "C. elegans life stage occurring during 3-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 3-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000809", + "lbl" : "C. elegans life stage occurring during bean embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the bean embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000810", + "lbl" : "C. elegans life stage occurring during comma embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the comma embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000811", + "lbl" : "C. elegans life stage occurring during fully-elongated embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the fully-elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000812", + "lbl" : "C. elegans life stage occurring during proliferating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the proliferating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000813", + "lbl" : "C. elegans life stage occurring during blastula embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the blastula embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000814", + "lbl" : "C. elegans life stage occurring during gastrulation", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the gastrulating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000815", + "lbl" : "C. elegans life stage occurring during enclosing embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the enclosing embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000816", + "lbl" : "C. elegans life stage occurring during adulthood", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the adult life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000817", + "lbl" : "C. elegans life stage occurring during larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000818", + "lbl" : "C. elegans life stage occurring during L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L1 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000819", + "lbl" : "C. elegans life stage occurring during L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L2 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000820", + "lbl" : "C. elegans life stage occurring during L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L3 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000821", + "lbl" : "C. elegans life stage occurring during L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L4 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000822", + "lbl" : "C. elegans life stage by minutes post first cleavage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", + "xrefs" : [ "WB:WBPaper00000653", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000823", + "lbl" : "C. elegans life stage by number of cells", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage classified by the number of cells in the organism.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000824", + "lbl" : "C. elegans life stage occurring during larval molt", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage that occurs during a larval molt", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000825", + "lbl" : "C. elegans life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A life stage of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000826", + "lbl" : "obsolete set of worm life stages", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000827", + "lbl" : "post dauer stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000828", + "lbl" : "post dauer L4 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL4" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000829", + "lbl" : "post dauer adult stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "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", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000002", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000005", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000088" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000022", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "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/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "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/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000031", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000034", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000027" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000032" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000040", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000026" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000045", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000043" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000046", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000029" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000040" + }, { + "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/WBls_0000824" + }, { + "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_0000827" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000055", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000056", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000057", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000059", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000064" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000065" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000066" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000067" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000071" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000073", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000070" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000076", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000077", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "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/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000663" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000079" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000080" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000012" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000091", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000092", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000093", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000094", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", + "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" : "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "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/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000098", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "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/WBls_0000091" + }, { + "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000082" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000101", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "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/WBls_0000101" + }, { + "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/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000104", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000105", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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/WBls_0000105" + }, { + "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/WBls_0000105" + }, { + "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/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000109", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000110", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000675" + }, { + "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_0000822" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "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" : "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000133" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "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_0000230", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "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_0000357", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "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_0000484", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "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_0000611", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000660" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000665" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000077" + }, { + "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/WBls_0000664" + }, { + "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/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000667", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000668", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000669", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000670" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000671" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000672" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000673" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000800" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000111" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000679", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000679" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000683" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000684" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000685" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000686" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000687" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000688" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000689" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000690" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000702" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000704", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000705", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000706", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000707", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "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/WBls_0000711" + }, { + "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/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000710", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000711", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000712", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000713", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000716", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000718", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000719", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000720", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000723", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000741" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000724", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000724" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000728", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000727" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000733", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000732" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000734", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000734" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000736", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000737", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000740", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000737" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000741", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000742", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000682" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000795", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000797" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000798" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000799" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000801" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000803", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000804", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000805", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000806", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000807", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000808", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000809", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000810", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000811", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000812", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000813", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000814", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000815", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000816", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000817", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000818", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000819", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000820", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000821", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000822", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000823", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000824", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000825", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000827", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "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_0000827" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000828", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000829", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "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 0844566..ddee9f3 100644 --- a/wbls-base.obo +++ b/wbls-base.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2023-01-03/wbls-base.owl +data-version: wbls/releases/2023-04-11/wbls-base.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 @@ -10,9 +10,9 @@ ontology: wbls/wbls-base property_value: http://purl.org/dc/elements/1.1/description "Ontology about the development and life stages of the C. elegans" xsd:string property_value: http://purl.org/dc/elements/1.1/title "C. elegans Development Ontology" xsd:string 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: 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 "2023-01-03" xsd:string +property_value: owl:versionInfo "2023-04-11" xsd:string [Term] id: WBls:0000001 diff --git a/wbls-base.owl b/wbls-base.owl index 4ef2a8b..81d782e 100644 --- a/wbls-base.owl +++ b/wbls-base.owl @@ -11,20 +11,20 @@ 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 http://creativecommons.org/licenses/by/4.0/ - OBO-Edit 2.2-rc1 - 15:11:2017 12:24 - worm_development - 1.2 - chris-grove - Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. - Version: 1.04 - 2023-01-03 + OBO-Edit 2.2-rc1 + 15:11:2017 12:24 + worm_development + 1.2 + chris-grove + Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. + Version: 1.04 + 2023-04-11 @@ -43,7 +43,7 @@ - definition + definition @@ -78,6 +78,12 @@ + + + + + + @@ -117,7 +123,7 @@ - has_alternative_id + has_alternative_id @@ -125,7 +131,7 @@ - has_broad_synonym + has_broad_synonym @@ -133,7 +139,7 @@ - database_cross_reference + database_cross_reference @@ -141,7 +147,7 @@ - has_exact_synonym + has_exact_synonym @@ -149,7 +155,7 @@ - has_narrow_synonym + has_narrow_synonym @@ -157,7 +163,7 @@ - has_obo_format_version + has_obo_format_version @@ -165,7 +171,7 @@ - has_obo_namespace + has_obo_namespace @@ -173,7 +179,7 @@ - has_related_synonym + has_related_synonym @@ -193,7 +199,7 @@ - shorthand + shorthand @@ -231,11 +237,11 @@ - BFO:0000050 - worm_development - part_of - part_of - part_of + BFO:0000050 + worm_development + part_of + part_of + part_of @@ -244,11 +250,11 @@ - BFO:0000062 - worm_development - preceded_by - preceded_by - preceded_by + BFO:0000062 + worm_development + preceded_by + preceded_by + preceded_by @@ -257,11 +263,11 @@ - RO:0002087 - worm_development - starts_at_end_of - starts_at_end_of - starts_at_end_of + RO:0002087 + worm_development + starts_at_end_of + starts_at_end_of + starts_at_end_of @@ -281,18 +287,18 @@ - The nematode life-cycle stage that occurs entirely outside of a host organism. - jl16 - 2015-03-19T10:42:18Z - worm_development - WBls:0000001 - free-living nematode stage + The nematode life-cycle stage that occurs entirely outside of a host organism. + jl16 + 2015-03-19T10:42:18Z + worm_development + WBls:0000001 + free-living nematode stage - The nematode life-cycle stage that occurs entirely outside of a host organism. - WB:jl + The nematode life-cycle stage that occurs entirely outside of a host organism. + WB:jl @@ -301,17 +307,17 @@ - All C. elegans development stages, including embryo, larva and adult stage. - all stages - worm_development - WBls:0000002 - all stages Ce + All C. elegans development stages, including embryo, larva and adult stage. + all stages + worm_development + WBls:0000002 + all stages Ce - All C. elegans development stages, including embryo, larva and adult stage. - WB:wjc + All C. elegans development stages, including embryo, larva and adult stage. + WB:wjc @@ -321,18 +327,18 @@ - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - embryo - worm_development - WBls:0000003 - embryo Ce + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + embryo + worm_development + WBls:0000003 + embryo Ce - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:wjc + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:wjc @@ -347,18 +353,18 @@ - 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. - proliferating embryo - early embryo - worm_development - WBls:0000004 - proliferating embryo Ce + 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. + proliferating embryo + early embryo + worm_development + WBls:0000004 + proliferating embryo Ce - 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 + 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 @@ -373,17 +379,17 @@ - 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. - blastula embryo - worm_development - WBls:0000005 - blastula embryo Ce + 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. + blastula embryo + worm_development + WBls:0000005 + blastula embryo Ce - 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 + 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 @@ -404,24 +410,24 @@ - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - 1-cell embryo - fertilized egg - worm_development - WBls:0000006 - 1-cell embryo Ce + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + 1-cell embryo + fertilized egg + worm_development + WBls:0000006 + 1-cell embryo Ce - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - WB:wjc + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + WB:wjc - fertilized egg - WB:dr + fertilized egg + WB:dr @@ -442,17 +448,17 @@ - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - 2-cell embryo - worm_development - WBls:0000007 - 2-cell embryo Ce + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + 2-cell embryo + worm_development + WBls:0000007 + 2-cell embryo Ce - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - WB:wjc + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + WB:wjc @@ -473,17 +479,17 @@ - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - 4-cell embryo - worm_development - WBls:0000008 - 4-cell embryo Ce + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + 4-cell embryo + worm_development + WBls:0000008 + 4-cell embryo Ce - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - WB:wjc + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + WB:wjc @@ -498,17 +504,17 @@ - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - 28-cell embryo - worm_development - WBls:0000009 - 28-cell embryo Ce + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + 28-cell embryo + worm_development + WBls:0000009 + 28-cell embryo Ce - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - WB:wjc + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + WB:wjc @@ -529,17 +535,17 @@ - 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. - gastrulating embryo - worm_development - WBls:0000010 - gastrulating embryo Ce + 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. + gastrulating embryo + worm_development + WBls:0000010 + gastrulating embryo Ce - 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 + 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 @@ -560,17 +566,17 @@ - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - 51-cell embryo - worm_development - WBls:0000011 - 51-cell embryo Ce + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + 51-cell embryo + worm_development + WBls:0000011 + 51-cell embryo Ce - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - WB:wjc + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + WB:wjc @@ -591,17 +597,17 @@ - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - 88-cell embryo - worm_development - WBls:0000012 - 88-cell embryo Ce + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + 88-cell embryo + worm_development + WBls:0000012 + 88-cell embryo Ce - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - WB:wjc + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + WB:wjc @@ -628,17 +634,17 @@ - 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. - enclosing embryo - worm_development - WBls:0000013 - enclosing embryo Ce + 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. + enclosing embryo + worm_development + WBls:0000013 + enclosing embryo Ce - 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 + 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 @@ -659,17 +665,17 @@ - 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. - late cleavage stage embryo - worm_development - WBls:0000014 - late cleavage stage embryo Ce + 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. + late cleavage stage embryo + worm_development + WBls:0000014 + late cleavage stage embryo Ce - 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 + 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 @@ -696,18 +702,18 @@ - 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. - elongating embryo - mid embryo - worm_development - WBls:0000015 - elongating embryo Ce + 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. + elongating embryo + mid embryo + worm_development + WBls:0000015 + elongating embryo Ce - 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 + 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 @@ -734,17 +740,17 @@ - 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. - bean embryo - worm_development - WBls:0000016 - bean embryo Ce + 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. + bean embryo + worm_development + WBls:0000016 + bean embryo Ce - 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 + 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 @@ -765,17 +771,17 @@ - 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. - comma embryo - worm_development - WBls:0000017 - comma embryo Ce + 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. + comma embryo + worm_development + WBls:0000017 + comma embryo Ce - 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 + 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 @@ -796,17 +802,17 @@ - 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. - 1.5-fold embryo - worm_development - WBls:0000018 - 1.5-fold embryo Ce + 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. + 1.5-fold embryo + worm_development + WBls:0000018 + 1.5-fold embryo Ce - 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 + 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 @@ -827,17 +833,17 @@ - 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. - 2-fold embryo - worm_development - WBls:0000019 - 2-fold embryo Ce + 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. + 2-fold embryo + worm_development + WBls:0000019 + 2-fold embryo Ce - 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 + 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 @@ -858,17 +864,17 @@ - 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. - 3-fold embryo - worm_development - WBls:0000020 - 3-fold embryo Ce + 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. + 3-fold embryo + worm_development + WBls:0000020 + 3-fold embryo Ce - 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 + 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 @@ -895,20 +901,20 @@ - 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. - fully-elongated embryo - late embryo - morphogenetic stage - pre-hatched embryo - worm_development - WBls:0000021 - fully-elongated embryo Ce + 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. + fully-elongated embryo + late embryo + morphogenetic stage + pre-hatched embryo + worm_development + WBls:0000021 + fully-elongated embryo Ce - 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. - WB:wjc + 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. + WB:wjc @@ -923,18 +929,18 @@ - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - postembryonic - worm_development - WBls:0000022 - postembryonic Ce + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + postembryonic + worm_development + WBls:0000022 + postembryonic Ce - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - WB:WBPerson2987 - WB:wjc + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + WB:WBPerson2987 + WB:wjc @@ -956,18 +962,18 @@ - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - larva - worm_development - WBls:0000023 - larva Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + larva + worm_development + WBls:0000023 + larva Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:wjc + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:wjc @@ -989,17 +995,17 @@ - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - L1 larva - worm_development - WBls:0000024 - L1 larva Ce + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + L1 larva + worm_development + WBls:0000024 + L1 larva Ce - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - WB:wjc + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + WB:wjc @@ -1014,17 +1020,17 @@ - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2 lethargus - worm_development - WBls:0000025 - L1-L2 lethargus Ce + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2 lethargus + worm_development + WBls:0000025 + L1-L2 lethargus Ce - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1045,17 +1051,17 @@ - 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. - L1-L2 molt - worm_development - WBls:0000026 - L1-L2 molt Ce + 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. + L1-L2 molt + worm_development + WBls:0000026 + L1-L2 molt Ce - 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 + 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 @@ -1083,17 +1089,17 @@ - The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. - L2 larva - worm_development - WBls:0000027 - L2 larva Ce + The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. + L2 larva + worm_development + WBls:0000027 + L2 larva Ce - 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 + 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 @@ -1108,17 +1114,17 @@ - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2-L3 lethargus - worm_development - WBls:0000028 - L2-L3 lethargus Ce + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2-L3 lethargus + worm_development + WBls:0000028 + L2-L3 lethargus Ce - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1139,17 +1145,17 @@ - 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. - L2-L3 molt - worm_development - WBls:0000029 - L2-L3 molt Ce + 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. + L2-L3 molt + worm_development + WBls:0000029 + L2-L3 molt Ce - 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 + 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 @@ -1164,17 +1170,17 @@ - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-dauer lethargus - worm_development - WBls:0000030 - L2d-dauer lethargus Ce + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-dauer lethargus + worm_development + WBls:0000030 + L2d-dauer lethargus Ce - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1189,17 +1195,17 @@ - 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. - L2d-dauer molt - worm_development - WBls:0000031 - L2d-dauer molt Ce + 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. + L2d-dauer molt + worm_development + WBls:0000031 + L2d-dauer molt Ce - 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 + 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 @@ -1220,17 +1226,17 @@ - A third stage larva specialized for dispersal and long term survival. - dauer larva - worm_development - WBls:0000032 - dauer larva Ce + A third stage larva specialized for dispersal and long term survival. + dauer larva + worm_development + WBls:0000032 + dauer larva Ce - A third stage larva specialized for dispersal and long term survival. - ISBN:0-87969-433-5 + A third stage larva specialized for dispersal and long term survival. + ISBN:0-87969-433-5 @@ -1245,17 +1251,17 @@ - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - postdauer-L4 lethargus - worm_development - WBls:0000033 - postdauer-L4 lethargus Ce + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + postdauer-L4 lethargus + worm_development + WBls:0000033 + postdauer-L4 lethargus Ce - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1270,17 +1276,17 @@ - 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. - postdauer-L4 molt - worm_development - WBls:0000034 - postdauer-L4 molt Ce + 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. + postdauer-L4 molt + worm_development + WBls:0000034 + postdauer-L4 molt Ce - 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 + 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 @@ -1308,17 +1314,17 @@ - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - L3 larva - worm_development - WBls:0000035 - L3 larva Ce + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + L3 larva + worm_development + WBls:0000035 + L3 larva Ce - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - WB:wjc + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + WB:wjc @@ -1333,17 +1339,17 @@ - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L3-L4 lethargus - worm_development - WBls:0000036 - L3-L4 lethargus Ce + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L3-L4 lethargus + worm_development + WBls:0000036 + L3-L4 lethargus Ce - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1364,17 +1370,17 @@ - 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. - L3-L4 molt - worm_development - WBls:0000037 - L3-L4 molt Ce + 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. + L3-L4 molt + worm_development + WBls:0000037 + L3-L4 molt Ce - 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 + 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 @@ -1408,17 +1414,17 @@ - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva - worm_development - WBls:0000038 - L4 larva Ce + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva + worm_development + WBls:0000038 + L4 larva Ce - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -1433,17 +1439,17 @@ - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L4-adult lethargus - worm_development - WBls:0000039 - L4-adult lethargus Ce + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L4-adult lethargus + worm_development + WBls:0000039 + L4-adult lethargus Ce - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1458,17 +1464,17 @@ - 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. - L4-adult molt - worm_development - WBls:0000040 - L4-adult molt Ce + 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. + L4-adult molt + worm_development + WBls:0000040 + L4-adult molt Ce - 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 + 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 @@ -1502,17 +1508,17 @@ - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - adult - worm_development - WBls:0000041 - adult Ce + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + adult + worm_development + WBls:0000041 + adult Ce - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - WB:wjc + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + WB:wjc @@ -1533,17 +1539,17 @@ - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2 ecdysis - worm_development - WBls:0000042 - L1-L2 ecdysis Ce + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2 ecdysis + worm_development + WBls:0000042 + L1-L2 ecdysis Ce - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1558,17 +1564,17 @@ - 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. - L1-L2d molt - worm_development - WBls:0000043 - L1-L2d molt Ce + 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. + L1-L2d molt + worm_development + WBls:0000043 + L1-L2d molt Ce - 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 + 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 @@ -1583,17 +1589,17 @@ - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2d lethargus - worm_development - WBls:0000044 - L1-L2d lethargus Ce + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2d lethargus + worm_development + WBls:0000044 + L1-L2d lethargus Ce - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1608,17 +1614,17 @@ - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2d ecdysis - worm_development - WBls:0000045 - L1-L2d ecdysis Ce + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2d ecdysis + worm_development + WBls:0000045 + L1-L2d ecdysis Ce - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1633,17 +1639,17 @@ - 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. - L2d larva - worm_development - WBls:0000046 - L2d larva Ce + 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. + L2d larva + worm_development + WBls:0000046 + L2d larva Ce - 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 + 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 @@ -1664,17 +1670,17 @@ - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2-L3 ecdysis - worm_development - WBls:0000047 - L2-L3 ecdysis Ce + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2-L3 ecdysis + worm_development + WBls:0000047 + L2-L3 ecdysis Ce - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1689,17 +1695,17 @@ - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-dauer ecdysis - worm_development - WBls:0000048 - L2d-dauer ecdysis Ce + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-dauer ecdysis + worm_development + WBls:0000048 + L2d-dauer ecdysis Ce - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1720,17 +1726,17 @@ - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L3-L4 ecdysis - worm_development - WBls:0000049 - L3-L4 ecdysis Ce + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L3-L4 ecdysis + worm_development + WBls:0000049 + L3-L4 ecdysis Ce - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1751,16 +1757,16 @@ - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - worm_development - WBls:0000050 - L4-adult ecdysis Ce + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + worm_development + WBls:0000050 + L4-adult ecdysis Ce - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - WB:wjc + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + WB:wjc @@ -1775,17 +1781,17 @@ - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - postdauer-L4 ecdysis - worm_development - WBls:0000051 - postdauer-L4 ecdysis Ce + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + postdauer-L4 ecdysis + worm_development + WBls:0000051 + postdauer-L4 ecdysis Ce - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1800,26 +1806,26 @@ - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PDL3 - dauer exit - worm_development - WBls:0000052 - "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)." - post dauer L3 stage Ce + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PDL3 + dauer exit + worm_development + WBls:0000052 + "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)." + post dauer L3 stage Ce - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PMID:27417559 - WB:wjc + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PMID:27417559 + WB:wjc - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -1834,17 +1840,17 @@ - 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. - L2d-L3 molt - worm_development - WBls:0000053 - L2d-L3 molt Ce + 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. + L2d-L3 molt + worm_development + WBls:0000053 + L2d-L3 molt Ce - 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 + 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 @@ -1859,17 +1865,17 @@ - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-L3 lethargus - worm_development - WBls:0000054 - L2d-L3 lethargus Ce + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-L3 lethargus + worm_development + WBls:0000054 + L2d-L3 lethargus Ce - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1884,17 +1890,17 @@ - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-L3 ecdysis - worm_development - WBls:0000055 - L2d-L3 ecdysis Ce + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-L3 ecdysis + worm_development + WBls:0000055 + L2d-L3 ecdysis Ce - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1903,17 +1909,17 @@ - The stage after an male animal is fully-developed and reaches maturity. - adult male - worm_development - WBls:0000056 - adult male Ce + The stage after an male animal is fully-developed and reaches maturity. + adult male + worm_development + WBls:0000056 + adult male Ce - The stage after an male animal is fully-developed and reaches maturity. - WB:wjc + The stage after an male animal is fully-developed and reaches maturity. + WB:wjc @@ -1922,17 +1928,17 @@ - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - adult hermaphrodite - worm_development - WBls:0000057 - adult hermaphrodite Ce + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + adult hermaphrodite + worm_development + WBls:0000057 + adult hermaphrodite Ce - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - WB:wjc + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + WB:wjc @@ -1947,17 +1953,17 @@ - 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. - pre-reproductive stage adult hermaphrodite - worm_development - WBls:0000058 - pre-reproductive stage adult hermaphrodite Ce + 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. + pre-reproductive stage adult hermaphrodite + worm_development + WBls:0000058 + pre-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -1966,18 +1972,18 @@ - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - jl16 - 2015-03-19T10:44:40Z - worm_development - WBls:0000059 - parasitic nematode stage + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + jl16 + 2015-03-19T10:44:40Z + worm_development + WBls:0000059 + parasitic nematode stage - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - WB:jl + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + WB:jl @@ -1992,17 +1998,17 @@ - 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. - reproductive stage adult hermaphrodite - worm_development - WBls:0000060 - reproductive stage adult hermaphrodite Ce + 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. + reproductive stage adult hermaphrodite + worm_development + WBls:0000060 + reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -2017,17 +2023,17 @@ - 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. - oocyte-laying stage adult hermaphrodite - worm_development - WBls:0000061 - oocyte-laying stage adult hermaphrodite Ce + 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. + oocyte-laying stage adult hermaphrodite + worm_development + WBls:0000061 + oocyte-laying stage adult hermaphrodite Ce - 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 + 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 @@ -2042,17 +2048,17 @@ - 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. - post-reproductive stage adult hermaphrodite - worm_development - WBls:0000062 - post-reproductive stage adult hermaphrodite Ce + 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. + post-reproductive stage adult hermaphrodite + worm_development + WBls:0000062 + post-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -2067,17 +2073,17 @@ - At 20 Centigrade: 0-24 hours after L4-adult molt. - newly molted young adult hermaphrodite - worm_development - WBls:0000063 - newly molted young adult hermaphrodite Ce + At 20 Centigrade: 0-24 hours after L4-adult molt. + newly molted young adult hermaphrodite + worm_development + WBls:0000063 + newly molted young adult hermaphrodite Ce - At 20 Centigrade: 0-24 hours after L4-adult molt. - WB:wjc + At 20 Centigrade: 0-24 hours after L4-adult molt. + WB:wjc @@ -2092,17 +2098,17 @@ - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - 1-day post-L4 adult hermaphrodite - worm_development - WBls:0000064 - 1-day post-L4 adult hermaphrodite Ce + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + 1-day post-L4 adult hermaphrodite + worm_development + WBls:0000064 + 1-day post-L4 adult hermaphrodite Ce - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - WB:wjc + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + WB:wjc @@ -2123,17 +2129,17 @@ - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - 2-days post-L4 adult hermaphrodite - worm_development - WBls:0000065 - 2-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + 2-days post-L4 adult hermaphrodite + worm_development + WBls:0000065 + 2-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - WB:wjc + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + WB:wjc @@ -2154,17 +2160,17 @@ - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - 3-days post-L4 adult hermaphrodite - worm_development - WBls:0000066 - 3-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + 3-days post-L4 adult hermaphrodite + worm_development + WBls:0000066 + 3-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - WB:wjc + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + WB:wjc @@ -2185,17 +2191,17 @@ - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - 4-days post-L4 adult hermaphrodite - worm_development - WBls:0000067 - 4-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + 4-days post-L4 adult hermaphrodite + worm_development + WBls:0000067 + 4-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - WB:wjc + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + WB:wjc @@ -2216,17 +2222,17 @@ - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - 5-days post-L4 adult hermaphrodite - worm_development - WBls:0000068 - 5-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + 5-days post-L4 adult hermaphrodite + worm_development + WBls:0000068 + 5-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - WB:wjc + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + WB:wjc @@ -2247,17 +2253,17 @@ - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - 4-7 days post-L4 adult hermaphrodite - worm_development - WBls:0000069 - 4-7 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + 4-7 days post-L4 adult hermaphrodite + worm_development + WBls:0000069 + 4-7 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - WB:wjc + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + WB:wjc @@ -2278,17 +2284,17 @@ - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - 7-10 days post-L4 adult hermaphrodite - worm_development - WBls:0000070 - 7-10 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + 7-10 days post-L4 adult hermaphrodite + worm_development + WBls:0000070 + 7-10 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - WB:wjc + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + WB:wjc @@ -2309,17 +2315,17 @@ - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - 8-cell embryo - worm_development - WBls:0000071 - 8-cell embryo Ce + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + 8-cell embryo + worm_development + WBls:0000071 + 8-cell embryo Ce - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - WB:wjc + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + WB:wjc @@ -2340,17 +2346,17 @@ - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - 12-cell embryo - worm_development - WBls:0000072 - 12-cell embryo Ce + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + 12-cell embryo + worm_development + WBls:0000072 + 12-cell embryo Ce - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - WB:wjc + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + WB:wjc @@ -2359,17 +2365,17 @@ - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva male - worm_development - WBls:0000073 - L4 larva male Ce + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva male + worm_development + WBls:0000073 + L4 larva male Ce - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -2396,18 +2402,18 @@ - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - danielaraciti - 2012-05-22T14:35:04Z - worm_development - WBls:0000074 - 11-15 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + danielaraciti + 2012-05-22T14:35:04Z + worm_development + WBls:0000074 + 11-15 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - WB:dr + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + WB:dr @@ -2415,17 +2421,17 @@ - A developemental life stage of a worm - danielaraciti - worm_development - WBls:0000075 - worm life stage + A developemental life stage of a worm + danielaraciti + worm_development + WBls:0000075 + worm life stage - A developemental life stage of a worm - WB:WBPerson2987 + A developemental life stage of a worm + WB:WBPerson2987 @@ -2434,19 +2440,19 @@ - Any Strongyloides developmental stage, including free-living and parasitic stages. - jl16 - 2015-03-19T10:49:23Z - all stages Strongyloides - worm_development - WBls:0000076 - Strongyloides life stage + Any Strongyloides developmental stage, including free-living and parasitic stages. + jl16 + 2015-03-19T10:49:23Z + all stages Strongyloides + worm_development + WBls:0000076 + Strongyloides life stage - Any Strongyloides developmental stage, including free-living and parasitic stages. - WB:jl + Any Strongyloides developmental stage, including free-living and parasitic stages. + WB:jl @@ -2456,25 +2462,25 @@ - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2012-05-30T09:23:44Z - WBls:0000662 - sheathed microfilaria - Brugia immature microfilaria - sheathed microfilaria Bma - worm_development - immature microfilaria Bma - WBls:0000077 - Brugia sheathed microfilaria + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2012-05-30T09:23:44Z + WBls:0000662 + sheathed microfilaria + Brugia immature microfilaria + sheathed microfilaria Bma + worm_development + immature microfilaria Bma + WBls:0000077 + Brugia sheathed microfilaria - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr - WB:mb + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr + WB:mb @@ -2505,21 +2511,21 @@ - The first stage larva. - danielaraciti - 2012-05-30T09:29:36Z - L1 - L1 larva Bma - worm_development - WBls:0000079 - Brugia L1 + The first stage larva. + danielaraciti + 2012-05-30T09:29:36Z + L1 + L1 larva Bma + worm_development + WBls:0000079 + Brugia L1 - The first stage larva. - WB:dr - WB:mb + The first stage larva. + WB:dr + WB:mb @@ -2540,21 +2546,21 @@ - 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. - danielaraciti - 2012-05-30T09:30:40Z - L2 - L2 larva Bma - worm_development - WBls:0000080 - Brugia L2 + 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. + danielaraciti + 2012-05-30T09:30:40Z + L2 + L2 larva Bma + worm_development + WBls:0000080 + Brugia L2 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -2575,21 +2581,21 @@ - The third stage larva. - danielaraciti - 2012-05-30T09:31:06Z - L3 - L3 larva Bma - worm_development - WBls:0000081 - Brugia L3 + The third stage larva. + danielaraciti + 2012-05-30T09:31:06Z + L3 + L3 larva Bma + worm_development + WBls:0000081 + Brugia L3 - The third stage larva. - WB:dr - WB:mb + The third stage larva. + WB:dr + WB:mb @@ -2610,21 +2616,21 @@ - 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. - danielaraciti - 2012-05-30T09:31:38Z - L4 - L4 larva Bma - worm_development - WBls:0000082 - Brugia L4 + 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. + danielaraciti + 2012-05-30T09:31:38Z + L4 + L4 larva Bma + worm_development + WBls:0000082 + Brugia L4 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -2645,21 +2651,21 @@ - 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). - danielaraciti - 2012-05-30T09:32:18Z - adult - adult Bma - worm_development - WBls:0000083 - Brugia adult + 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). + danielaraciti + 2012-05-30T09:32:18Z + adult + adult Bma + worm_development + WBls:0000083 + Brugia adult - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -2680,21 +2686,21 @@ - E-cell has divided into Ea and Ep. Contains 14 cells. - danielaraciti - 2012-10-02T17:15:41Z - 14-cell embryo - worm_development - WBls:0000084 - 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. - 14-cell embryo Ce + E-cell has divided into Ea and Ep. Contains 14 cells. + danielaraciti + 2012-10-02T17:15:41Z + 14-cell embryo + worm_development + WBls:0000084 + 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. + 14-cell embryo Ce - E-cell has divided into Ea and Ep. Contains 14 cells. - WB:WBPaper00046121 - WB:dr + E-cell has divided into Ea and Ep. Contains 14 cells. + WB:WBPaper00046121 + WB:dr @@ -2715,21 +2721,21 @@ - Fourth cleavage of the AB lineage. Contains 24 cells. - danielaraciti - 2012-10-02T17:23:32Z - 24-cell embryo - worm_development - WBls:0000085 - 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. - 24-cell embryo Ce + Fourth cleavage of the AB lineage. Contains 24 cells. + danielaraciti + 2012-10-02T17:23:32Z + 24-cell embryo + worm_development + WBls:0000085 + 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. + 24-cell embryo Ce - Fourth cleavage of the AB lineage. Contains 24 cells. - WB:WBPaper00046121 - WB:dr + Fourth cleavage of the AB lineage. Contains 24 cells. + WB:WBPaper00046121 + WB:dr @@ -2750,21 +2756,21 @@ - Fifth cleavage of the AB lineage. Contains 44 cells. - danielaraciti - 2012-10-02T17:25:18Z - 44-cell embryo - worm_development - WBls:0000086 - 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. - 44-cell embryo Ce + Fifth cleavage of the AB lineage. Contains 44 cells. + danielaraciti + 2012-10-02T17:25:18Z + 44-cell embryo + worm_development + WBls:0000086 + 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. + 44-cell embryo Ce - Fifth cleavage of the AB lineage. Contains 44 cells. - WB:WBPaper00046121 - WB:dr + Fifth cleavage of the AB lineage. Contains 44 cells. + WB:WBPaper00046121 + WB:dr @@ -2785,21 +2791,21 @@ - Sixth cleavage of the AB lineage. Contains 68 cells. - danielaraciti - 2012-10-02T17:26:52Z - 68-cell embryo - worm_development - WBls:0000087 - 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. - 68-cell embryo Ce + Sixth cleavage of the AB lineage. Contains 68 cells. + danielaraciti + 2012-10-02T17:26:52Z + 68-cell embryo + worm_development + WBls:0000087 + 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. + 68-cell embryo Ce - Sixth cleavage of the AB lineage. Contains 68 cells. - WB:WBPaper00046121 - WB:dr + Sixth cleavage of the AB lineage. Contains 68 cells. + WB:WBPaper00046121 + WB:dr @@ -2820,21 +2826,21 @@ - Seventh cleavage of the AB lineage. Contains 86 cells. - danielaraciti - 2012-10-02T17:27:50Z - 86-cell embryo - worm_development - WBls:0000088 - 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. - 86-cell embryo Ce + Seventh cleavage of the AB lineage. Contains 86 cells. + danielaraciti + 2012-10-02T17:27:50Z + 86-cell embryo + worm_development + WBls:0000088 + 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. + 86-cell embryo Ce - Seventh cleavage of the AB lineage. Contains 86 cells. - WB:WBPaper00046121 - WB:dr + Seventh cleavage of the AB lineage. Contains 86 cells. + WB:WBPaper00046121 + WB:dr @@ -2855,19 +2861,19 @@ - P4 and M cells have finished migrating. Contains 190 cells. - danielaraciti - 2012-10-15T13:19:10Z - 190-cells embryo - worm_development - WBls:0000089 - 190-cells embryo Ce + P4 and M cells have finished migrating. Contains 190 cells. + danielaraciti + 2012-10-15T13:19:10Z + 190-cells embryo + worm_development + WBls:0000089 + 190-cells embryo Ce - P4 and M cells have finished migrating. Contains 190 cells. - WB:dr + P4 and M cells have finished migrating. Contains 190 cells. + WB:dr @@ -2888,19 +2894,19 @@ - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - danielaraciti - 2012-10-16T15:37:30Z - 96-cell embryo - worm_development - WBls:0000090 - 96-cell embryo Ce + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + danielaraciti + 2012-10-16T15:37:30Z + 96-cell embryo + worm_development + WBls:0000090 + 96-cell embryo Ce - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - WB:dr + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + WB:dr @@ -2909,21 +2915,21 @@ - Any Brugia developmental stage, including embryo, larva and adult stage. - danielaraciti - 2013-11-12T03:18:57Z - all stages Bma - worm_development - WBls:0000091 - Brugia life stage + Any Brugia developmental stage, including embryo, larva and adult stage. + danielaraciti + 2013-11-12T03:18:57Z + all stages Bma + worm_development + WBls:0000091 + Brugia life stage - Any Brugia developmental stage, including embryo, larva and adult stage. - WB:dr - WB:jl - WB:mb + Any Brugia developmental stage, including embryo, larva and adult stage. + WB:dr + WB:jl + WB:mb @@ -2933,21 +2939,21 @@ - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - danielaraciti - 2013-11-12T04:48:28Z - embryo - embryo Bma - worm_development - WBls:0000092 - Brugia embryo + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + danielaraciti + 2013-11-12T04:48:28Z + embryo + embryo Bma + worm_development + WBls:0000092 + Brugia embryo - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -2962,21 +2968,21 @@ - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - danielaraciti - 2013-11-12T04:50:29Z - postembryonic stage - postembryonic Bma - worm_development - WBls:0000093 - Brugia postembryonic stage + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + danielaraciti + 2013-11-12T04:50:29Z + postembryonic stage + postembryonic Bma + worm_development + WBls:0000093 + Brugia postembryonic stage - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -2991,21 +2997,21 @@ - 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. - danielaraciti - 2013-11-12T04:55:53Z - early embryo - early embryo Bma - worm_development - WBls:0000094 - Brugia early embryo + 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. + danielaraciti + 2013-11-12T04:55:53Z + early embryo + early embryo Bma + worm_development + WBls:0000094 + Brugia early embryo - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -3026,21 +3032,21 @@ - Proliferates from 100 cells to Lima bean stage. - danielaraciti - 2013-11-12T04:59:19Z - middle embryo - middle embryo Bma - worm_development - WBls:0000095 - Brugia middle embryo + Proliferates from 100 cells to Lima bean stage. + danielaraciti + 2013-11-12T04:59:19Z + middle embryo + middle embryo Bma + worm_development + WBls:0000095 + Brugia middle embryo - Proliferates from 100 cells to Lima bean stage. - WB:dr - WB:mb + Proliferates from 100 cells to Lima bean stage. + WB:dr + WB:mb @@ -3061,21 +3067,21 @@ - From Lima bean to hatching. - danielaraciti - 2013-11-12T05:00:28Z - late embryo - late embryo Bma - worm_development - WBls:0000096 - Brugia late embryo + From Lima bean to hatching. + danielaraciti + 2013-11-12T05:00:28Z + late embryo + late embryo Bma + worm_development + WBls:0000096 + Brugia late embryo - From Lima bean to hatching. - WB:dr - WB:mb + From Lima bean to hatching. + WB:dr + WB:mb @@ -3096,21 +3102,21 @@ - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - danielaraciti - 2013-11-12T05:12:19Z - larval stage - larva Bma - worm_development - WBls:0000097 - Brugia larval stage + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + danielaraciti + 2013-11-12T05:12:19Z + larval stage + larva Bma + worm_development + WBls:0000097 + Brugia larval stage - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:dr + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:dr @@ -3120,24 +3126,24 @@ - 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. - danielaraciti - 2013-11-12T05:23:54Z - L3i - Brugia vector-derived L3 - vector-derived L3 Bma - worm_development - iL3 - infective L3 - WBls:0000098 - Brugia L3i + 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. + danielaraciti + 2013-11-12T05:23:54Z + L3i + Brugia vector-derived L3 + vector-derived L3 Bma + worm_development + iL3 + infective L3 + WBls:0000098 + Brugia L3i - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -3152,22 +3158,22 @@ - 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). - danielaraciti - 2013-11-12T05:24:59Z - post-infection L3 - post-infection L3 Bma - worm_development - piL3 - WBls:0000099 - Brugia post-infection L3 + 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). + danielaraciti + 2013-11-12T05:24:59Z + post-infection L3 + post-infection L3 Bma + worm_development + piL3 + WBls:0000099 + Brugia post-infection L3 - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -3188,21 +3194,21 @@ - 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. - danielaraciti - 2013-11-12T05:37:52Z - young adult - young adult Bma - worm_development - WBls:0000100 - Brugia young adult + 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. + danielaraciti + 2013-11-12T05:37:52Z + young adult + young adult Bma + worm_development + WBls:0000100 + Brugia young adult - 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 + 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 @@ -3211,21 +3217,21 @@ - Any developmental stage in a nematode, including embryo, larva and adult stage. - danielaraciti - 2013-11-25T06:13:37Z - all stages nematode - nematode developmental stage - worm_development - WBls:0000101 - Nematode life stage + Any developmental stage in a nematode, including embryo, larva and adult stage. + danielaraciti + 2013-11-25T06:13:37Z + all stages nematode + nematode developmental stage + worm_development + WBls:0000101 + Nematode life stage - Any developmental stage in a nematode, including embryo, larva and adult stage. - WB:dr - WB:jl + Any developmental stage in a nematode, including embryo, larva and adult stage. + WB:dr + WB:jl @@ -3234,21 +3240,21 @@ - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - danielaraciti - 2013-11-25T06:14:14Z - embryo nematode - nematode egg stage - worm_development - WBls:0000102 - nematode embryo + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + danielaraciti + 2013-11-25T06:14:14Z + embryo nematode + nematode egg stage + worm_development + WBls:0000102 + nematode embryo - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -3263,19 +3269,19 @@ - A developemental life stage in a nematode that occurs from egg hatching until death. - danielaraciti - 2013-11-25T06:14:39Z - worm_development - WBls:0000103 - postembryonic nematode + A developemental life stage in a nematode that occurs from egg hatching until death. + danielaraciti + 2013-11-25T06:14:39Z + worm_development + WBls:0000103 + postembryonic nematode - A developemental life stage in a nematode that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a nematode that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -3290,20 +3296,20 @@ - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - danielaraciti - 2013-11-25T06:18:53Z - L5 - adult nematode - worm_development - WBls:0000104 - nematode adult + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + danielaraciti + 2013-11-25T06:18:53Z + L5 + adult nematode + worm_development + WBls:0000104 + nematode adult - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - WB:dr + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + WB:dr @@ -3312,21 +3318,21 @@ - The stage that begins after hatching and ends when the nematode becomes adult. - danielaraciti - 2013-11-25T06:19:27Z - larval stage - larva nematode - nematode larva - worm_development - WBls:0000105 - nematode larval stage + The stage that begins after hatching and ends when the nematode becomes adult. + danielaraciti + 2013-11-25T06:19:27Z + larval stage + larva nematode + nematode larva + worm_development + WBls:0000105 + nematode larval stage - The stage that begins after hatching and ends when the nematode becomes adult. - WB:dr + The stage that begins after hatching and ends when the nematode becomes adult. + WB:dr @@ -3335,19 +3341,19 @@ - The first stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:28Z - L1 larva nematode - worm_development - WBls:0000106 - L1 larval stage + The first stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:28Z + L1 larva nematode + worm_development + WBls:0000106 + L1 larval stage - The first stage larva of nematodes. - WB:dr + The first stage larva of nematodes. + WB:dr @@ -3362,19 +3368,19 @@ - The second stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:54Z - L2 larva nematode - worm_development - WBls:0000107 - L2 larval stage + The second stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:54Z + L2 larva nematode + worm_development + WBls:0000107 + L2 larval stage - The second stage larva of nematodes. - WB:dr + The second stage larva of nematodes. + WB:dr @@ -3389,19 +3395,19 @@ - The third stage larva of nematodes. - danielaraciti - 2013-11-25T06:21:33Z - L3 larva nematode - worm_development - WBls:0000108 - L3 larval stage + The third stage larva of nematodes. + danielaraciti + 2013-11-25T06:21:33Z + L3 larva nematode + worm_development + WBls:0000108 + L3 larval stage - The third stage larva of nematodes. - WB:dr + The third stage larva of nematodes. + WB:dr @@ -3416,19 +3422,19 @@ - The fourth stage larva of nematodes. - danielaraciti - 2013-11-25T06:22:48Z - L4 larva nematode - worm_development - WBls:0000109 - L4 larval stage + The fourth stage larva of nematodes. + danielaraciti + 2013-11-25T06:22:48Z + L4 larva nematode + worm_development + WBls:0000109 + L4 larval stage - The fourth stage larva of nematodes. - WB:dr + The fourth stage larva of nematodes. + WB:dr @@ -3437,21 +3443,21 @@ - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2013-11-25T06:23:23Z - sheathed microfilaria nematode - sheathed microfilariae - worm_development - WBls:0000110 - sheathed microfilaria + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2013-11-25T06:23:23Z + sheathed microfilaria nematode + sheathed microfilariae + worm_development + WBls:0000110 + sheathed microfilaria - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr @@ -3478,18 +3484,18 @@ - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - danielaraciti - 16-18 days post-L4 adult hermaphrodite - worm_development - WBls:0000111 - 16-18 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + danielaraciti + 16-18 days post-L4 adult hermaphrodite + worm_development + WBls:0000111 + 16-18 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - WB:dr + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + WB:dr @@ -3504,20 +3510,20 @@ - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 1 min post first-cleavage - worm_development - WBls:0000112 - 1 min post first-cleavage Ce + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 1 min post first-cleavage + worm_development + WBls:0000112 + 1 min post first-cleavage Ce - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3538,20 +3544,20 @@ - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 2 min post first-cleavage - worm_development - WBls:0000113 - 2 min post first-cleavage Ce + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 2 min post first-cleavage + worm_development + WBls:0000113 + 2 min post first-cleavage Ce - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3572,20 +3578,20 @@ - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 3 min post first-cleavage - worm_development - WBls:0000114 - 3 min post first-cleavage Ce + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 3 min post first-cleavage + worm_development + WBls:0000114 + 3 min post first-cleavage Ce - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3606,20 +3612,20 @@ - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 4 min post first-cleavage - worm_development - WBls:0000115 - 4 min post first-cleavage Ce + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 4 min post first-cleavage + worm_development + WBls:0000115 + 4 min post first-cleavage Ce - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3640,20 +3646,20 @@ - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 5 min post first-cleavage - worm_development - WBls:0000116 - 5 min post first-cleavage Ce + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 5 min post first-cleavage + worm_development + WBls:0000116 + 5 min post first-cleavage Ce - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3674,20 +3680,20 @@ - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 6 min post first-cleavage - worm_development - WBls:0000117 - 6 min post first-cleavage Ce + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 6 min post first-cleavage + worm_development + WBls:0000117 + 6 min post first-cleavage Ce - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3708,20 +3714,20 @@ - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 7 min post first-cleavage - worm_development - WBls:0000118 - 7 min post first-cleavage Ce + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 7 min post first-cleavage + worm_development + WBls:0000118 + 7 min post first-cleavage Ce - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3742,20 +3748,20 @@ - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 8 min post first-cleavage - worm_development - WBls:0000119 - 8 min post first-cleavage Ce + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 8 min post first-cleavage + worm_development + WBls:0000119 + 8 min post first-cleavage Ce - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3776,20 +3782,20 @@ - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 9 min post first-cleavage - worm_development - WBls:0000120 - 9 min post first-cleavage Ce + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 9 min post first-cleavage + worm_development + WBls:0000120 + 9 min post first-cleavage Ce - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3810,20 +3816,20 @@ - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 10 min post first-cleavage - worm_development - WBls:0000121 - 10 min post first-cleavage Ce + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 10 min post first-cleavage + worm_development + WBls:0000121 + 10 min post first-cleavage Ce - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3844,20 +3850,20 @@ - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 11 min post first-cleavage - worm_development - WBls:0000122 - 11 min post first-cleavage Ce + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 11 min post first-cleavage + worm_development + WBls:0000122 + 11 min post first-cleavage Ce - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3878,20 +3884,20 @@ - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 12 min post first-cleavage - worm_development - WBls:0000123 - 12 min post first-cleavage Ce + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 12 min post first-cleavage + worm_development + WBls:0000123 + 12 min post first-cleavage Ce - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3912,20 +3918,20 @@ - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 13 min post first-cleavage - worm_development - WBls:0000124 - 13 min post first-cleavage Ce + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 13 min post first-cleavage + worm_development + WBls:0000124 + 13 min post first-cleavage Ce - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3946,20 +3952,20 @@ - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 14 min post first-cleavage - worm_development - WBls:0000125 - 14 min post first-cleavage Ce + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 14 min post first-cleavage + worm_development + WBls:0000125 + 14 min post first-cleavage Ce - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3980,20 +3986,20 @@ - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 15 min post first-cleavage - worm_development - WBls:0000126 - 15 min post first-cleavage Ce + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 15 min post first-cleavage + worm_development + WBls:0000126 + 15 min post first-cleavage Ce - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4014,20 +4020,20 @@ - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 16 min post first-cleavage - worm_development - WBls:0000127 - 16 min post first-cleavage Ce + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 16 min post first-cleavage + worm_development + WBls:0000127 + 16 min post first-cleavage Ce - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4048,20 +4054,20 @@ - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 17 min post first-cleavage - worm_development - WBls:0000128 - 17 min post first-cleavage Ce + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 17 min post first-cleavage + worm_development + WBls:0000128 + 17 min post first-cleavage Ce - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4082,20 +4088,20 @@ - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 18 min post first-cleavage - worm_development - WBls:0000129 - 18 min post first-cleavage Ce + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 18 min post first-cleavage + worm_development + WBls:0000129 + 18 min post first-cleavage Ce - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4116,20 +4122,20 @@ - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 19 min post first-cleavage - worm_development - WBls:0000130 - 19 min post first-cleavage Ce + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 19 min post first-cleavage + worm_development + WBls:0000130 + 19 min post first-cleavage Ce - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4150,20 +4156,20 @@ - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 20 min post first-cleavage - worm_development - WBls:0000131 - 20 min post first-cleavage Ce + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 20 min post first-cleavage + worm_development + WBls:0000131 + 20 min post first-cleavage Ce - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4184,20 +4190,20 @@ - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 21 min post first-cleavage - worm_development - WBls:0000132 - 21 min post first-cleavage Ce + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 21 min post first-cleavage + worm_development + WBls:0000132 + 21 min post first-cleavage Ce - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4218,20 +4224,20 @@ - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 22 min post first-cleavage - worm_development - WBls:0000133 - 22 min post first-cleavage Ce + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 22 min post first-cleavage + worm_development + WBls:0000133 + 22 min post first-cleavage Ce - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4252,20 +4258,20 @@ - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 23 min post first-cleavage - worm_development - WBls:0000134 - 23 min post first-cleavage Ce + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 23 min post first-cleavage + worm_development + WBls:0000134 + 23 min post first-cleavage Ce - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4286,20 +4292,20 @@ - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 24 min post first-cleavage - worm_development - WBls:0000135 - 24 min post first-cleavage Ce + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 24 min post first-cleavage + worm_development + WBls:0000135 + 24 min post first-cleavage Ce - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4320,20 +4326,20 @@ - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 25 min post first-cleavage - worm_development - WBls:0000136 - 25 min post first-cleavage Ce + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 25 min post first-cleavage + worm_development + WBls:0000136 + 25 min post first-cleavage Ce - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4354,20 +4360,20 @@ - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 26 min post first-cleavage - worm_development - WBls:0000137 - 26 min post first-cleavage Ce + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 26 min post first-cleavage + worm_development + WBls:0000137 + 26 min post first-cleavage Ce - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4388,20 +4394,20 @@ - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 27 min post first-cleavage - worm_development - WBls:0000138 - 27 min post first-cleavage Ce + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 27 min post first-cleavage + worm_development + WBls:0000138 + 27 min post first-cleavage Ce - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4422,20 +4428,20 @@ - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 28 min post first-cleavage - worm_development - WBls:0000139 - 28 min post first-cleavage Ce + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 28 min post first-cleavage + worm_development + WBls:0000139 + 28 min post first-cleavage Ce - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4456,20 +4462,20 @@ - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 29 min post first-cleavage - worm_development - WBls:0000140 - 29 min post first-cleavage Ce + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 29 min post first-cleavage + worm_development + WBls:0000140 + 29 min post first-cleavage Ce - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4490,20 +4496,20 @@ - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 30 min post first-cleavage - worm_development - WBls:0000141 - 30 min post first-cleavage Ce + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 30 min post first-cleavage + worm_development + WBls:0000141 + 30 min post first-cleavage Ce - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4524,20 +4530,20 @@ - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 31 min post first-cleavage - worm_development - WBls:0000142 - 31 min post first-cleavage Ce + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 31 min post first-cleavage + worm_development + WBls:0000142 + 31 min post first-cleavage Ce - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4558,20 +4564,20 @@ - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 32 min post first-cleavage - worm_development - WBls:0000143 - 32 min post first-cleavage Ce + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 32 min post first-cleavage + worm_development + WBls:0000143 + 32 min post first-cleavage Ce - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4592,20 +4598,20 @@ - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 33 min post first-cleavage - worm_development - WBls:0000144 - 33 min post first-cleavage Ce + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 33 min post first-cleavage + worm_development + WBls:0000144 + 33 min post first-cleavage Ce - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4626,20 +4632,20 @@ - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 34 min post first-cleavage - worm_development - WBls:0000145 - 34 min post first-cleavage Ce + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 34 min post first-cleavage + worm_development + WBls:0000145 + 34 min post first-cleavage Ce - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4660,20 +4666,20 @@ - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 35 min post first-cleavage - worm_development - WBls:0000146 - 35 min post first-cleavage Ce + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 35 min post first-cleavage + worm_development + WBls:0000146 + 35 min post first-cleavage Ce - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4694,20 +4700,20 @@ - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 36 min post first-cleavage - worm_development - WBls:0000147 - 36 min post first-cleavage Ce + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 36 min post first-cleavage + worm_development + WBls:0000147 + 36 min post first-cleavage Ce - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4728,20 +4734,20 @@ - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 37 min post first-cleavage - worm_development - WBls:0000148 - 37 min post first-cleavage Ce + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 37 min post first-cleavage + worm_development + WBls:0000148 + 37 min post first-cleavage Ce - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4762,20 +4768,20 @@ - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 38 min post first-cleavage - worm_development - WBls:0000149 - 38 min post first-cleavage Ce + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 38 min post first-cleavage + worm_development + WBls:0000149 + 38 min post first-cleavage Ce - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4796,20 +4802,20 @@ - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 39 min post first-cleavage - worm_development - WBls:0000150 - 39 min post first-cleavage Ce + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 39 min post first-cleavage + worm_development + WBls:0000150 + 39 min post first-cleavage Ce - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4830,20 +4836,20 @@ - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 40 min post first-cleavage - worm_development - WBls:0000151 - 40 min post first-cleavage Ce + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 40 min post first-cleavage + worm_development + WBls:0000151 + 40 min post first-cleavage Ce - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4864,20 +4870,20 @@ - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 41 min post first-cleavage - worm_development - WBls:0000152 - 41 min post first-cleavage Ce + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 41 min post first-cleavage + worm_development + WBls:0000152 + 41 min post first-cleavage Ce - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4898,20 +4904,20 @@ - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 42 min post first-cleavage - worm_development - WBls:0000153 - 42 min post first-cleavage Ce + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 42 min post first-cleavage + worm_development + WBls:0000153 + 42 min post first-cleavage Ce - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4932,20 +4938,20 @@ - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 43 min post first-cleavage - worm_development - WBls:0000154 - 43 min post first-cleavage Ce + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 43 min post first-cleavage + worm_development + WBls:0000154 + 43 min post first-cleavage Ce - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4966,20 +4972,20 @@ - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 44 min post first-cleavage - worm_development - WBls:0000155 - 44 min post first-cleavage Ce + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 44 min post first-cleavage + worm_development + WBls:0000155 + 44 min post first-cleavage Ce - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5000,20 +5006,20 @@ - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 45 min post first-cleavage - worm_development - WBls:0000156 - 45 min post first-cleavage Ce + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 45 min post first-cleavage + worm_development + WBls:0000156 + 45 min post first-cleavage Ce - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5034,20 +5040,20 @@ - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 46 min post first-cleavage - worm_development - WBls:0000157 - 46 min post first-cleavage Ce + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 46 min post first-cleavage + worm_development + WBls:0000157 + 46 min post first-cleavage Ce - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5068,20 +5074,20 @@ - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 47 min post first-cleavage - worm_development - WBls:0000158 - 47 min post first-cleavage Ce + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 47 min post first-cleavage + worm_development + WBls:0000158 + 47 min post first-cleavage Ce - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5102,20 +5108,20 @@ - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 48 min post first-cleavage - worm_development - WBls:0000159 - 48 min post first-cleavage Ce + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 48 min post first-cleavage + worm_development + WBls:0000159 + 48 min post first-cleavage Ce - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5136,20 +5142,20 @@ - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 49 min post first-cleavage - worm_development - WBls:0000160 - 49 min post first-cleavage Ce + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 49 min post first-cleavage + worm_development + WBls:0000160 + 49 min post first-cleavage Ce - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5170,20 +5176,20 @@ - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 50 min post first-cleavage - worm_development - WBls:0000161 - 50 min post first-cleavage Ce + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 50 min post first-cleavage + worm_development + WBls:0000161 + 50 min post first-cleavage Ce - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5204,20 +5210,20 @@ - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 51 min post first-cleavage - worm_development - WBls:0000162 - 51 min post first-cleavage Ce + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 51 min post first-cleavage + worm_development + WBls:0000162 + 51 min post first-cleavage Ce - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5238,20 +5244,20 @@ - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 52 min post first-cleavage - worm_development - WBls:0000163 - 52 min post first-cleavage Ce + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 52 min post first-cleavage + worm_development + WBls:0000163 + 52 min post first-cleavage Ce - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5272,20 +5278,20 @@ - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 53 min post first-cleavage - worm_development - WBls:0000164 - 53 min post first-cleavage Ce + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 53 min post first-cleavage + worm_development + WBls:0000164 + 53 min post first-cleavage Ce - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5306,20 +5312,20 @@ - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 54 min post first-cleavage - worm_development - WBls:0000165 - 54 min post first-cleavage Ce + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 54 min post first-cleavage + worm_development + WBls:0000165 + 54 min post first-cleavage Ce - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5340,20 +5346,20 @@ - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 55 min post first-cleavage - worm_development - WBls:0000166 - 55 min post first-cleavage Ce + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 55 min post first-cleavage + worm_development + WBls:0000166 + 55 min post first-cleavage Ce - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5374,20 +5380,20 @@ - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 56 min post first-cleavage - worm_development - WBls:0000167 - 56 min post first-cleavage Ce + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 56 min post first-cleavage + worm_development + WBls:0000167 + 56 min post first-cleavage Ce - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5408,20 +5414,20 @@ - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 57 min post first-cleavage - worm_development - WBls:0000168 - 57 min post first-cleavage Ce + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 57 min post first-cleavage + worm_development + WBls:0000168 + 57 min post first-cleavage Ce - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5442,20 +5448,20 @@ - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 58 min post first-cleavage - worm_development - WBls:0000169 - 58 min post first-cleavage Ce + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 58 min post first-cleavage + worm_development + WBls:0000169 + 58 min post first-cleavage Ce - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5476,20 +5482,20 @@ - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 59 min post first-cleavage - worm_development - WBls:0000170 - 59 min post first-cleavage Ce + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 59 min post first-cleavage + worm_development + WBls:0000170 + 59 min post first-cleavage Ce - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5510,20 +5516,20 @@ - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 60 min post first-cleavage - worm_development - WBls:0000171 - 60 min post first-cleavage Ce + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 60 min post first-cleavage + worm_development + WBls:0000171 + 60 min post first-cleavage Ce - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5544,20 +5550,20 @@ - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 61 min post first-cleavage - worm_development - WBls:0000172 - 61 min post first-cleavage Ce + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 61 min post first-cleavage + worm_development + WBls:0000172 + 61 min post first-cleavage Ce - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5578,20 +5584,20 @@ - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 62 min post first-cleavage - worm_development - WBls:0000173 - 62 min post first-cleavage Ce + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 62 min post first-cleavage + worm_development + WBls:0000173 + 62 min post first-cleavage Ce - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5612,20 +5618,20 @@ - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 63 min post first-cleavage - worm_development - WBls:0000174 - 63 min post first-cleavage Ce + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 63 min post first-cleavage + worm_development + WBls:0000174 + 63 min post first-cleavage Ce - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5646,20 +5652,20 @@ - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 64 min post first-cleavage - worm_development - WBls:0000175 - 64 min post first-cleavage Ce + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 64 min post first-cleavage + worm_development + WBls:0000175 + 64 min post first-cleavage Ce - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5680,20 +5686,20 @@ - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 65 min post first-cleavage - worm_development - WBls:0000176 - 65 min post first-cleavage Ce + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 65 min post first-cleavage + worm_development + WBls:0000176 + 65 min post first-cleavage Ce - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5714,20 +5720,20 @@ - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 66 min post first-cleavage - worm_development - WBls:0000177 - 66 min post first-cleavage Ce + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 66 min post first-cleavage + worm_development + WBls:0000177 + 66 min post first-cleavage Ce - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5748,20 +5754,20 @@ - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 67 min post first-cleavage - worm_development - WBls:0000178 - 67 min post first-cleavage Ce + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 67 min post first-cleavage + worm_development + WBls:0000178 + 67 min post first-cleavage Ce - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5782,20 +5788,20 @@ - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 68 min post first-cleavage - worm_development - WBls:0000179 - 68 min post first-cleavage Ce + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 68 min post first-cleavage + worm_development + WBls:0000179 + 68 min post first-cleavage Ce - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5816,20 +5822,20 @@ - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 69 min post first-cleavage - worm_development - WBls:0000180 - 69 min post first-cleavage Ce + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 69 min post first-cleavage + worm_development + WBls:0000180 + 69 min post first-cleavage Ce - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5850,20 +5856,20 @@ - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 70 min post first-cleavage - worm_development - WBls:0000181 - 70 min post first-cleavage Ce + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 70 min post first-cleavage + worm_development + WBls:0000181 + 70 min post first-cleavage Ce - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5884,20 +5890,20 @@ - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 71 min post first-cleavage - worm_development - WBls:0000182 - 71 min post first-cleavage Ce + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 71 min post first-cleavage + worm_development + WBls:0000182 + 71 min post first-cleavage Ce - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5918,20 +5924,20 @@ - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 72 min post first-cleavage - worm_development - WBls:0000183 - 72 min post first-cleavage Ce + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 72 min post first-cleavage + worm_development + WBls:0000183 + 72 min post first-cleavage Ce - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5952,20 +5958,20 @@ - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 73 min post first-cleavage - worm_development - WBls:0000184 - 73 min post first-cleavage Ce + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 73 min post first-cleavage + worm_development + WBls:0000184 + 73 min post first-cleavage Ce - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5986,20 +5992,20 @@ - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 74 min post first-cleavage - worm_development - WBls:0000185 - 74 min post first-cleavage Ce + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 74 min post first-cleavage + worm_development + WBls:0000185 + 74 min post first-cleavage Ce - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6020,20 +6026,20 @@ - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 75 min post first-cleavage - worm_development - WBls:0000186 - 75 min post first-cleavage Ce + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 75 min post first-cleavage + worm_development + WBls:0000186 + 75 min post first-cleavage Ce - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6054,20 +6060,20 @@ - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 76 min post first-cleavage - worm_development - WBls:0000187 - 76 min post first-cleavage Ce + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 76 min post first-cleavage + worm_development + WBls:0000187 + 76 min post first-cleavage Ce - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6088,20 +6094,20 @@ - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 77 min post first-cleavage - worm_development - WBls:0000188 - 77 min post first-cleavage Ce + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 77 min post first-cleavage + worm_development + WBls:0000188 + 77 min post first-cleavage Ce - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6122,20 +6128,20 @@ - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 78 min post first-cleavage - worm_development - WBls:0000189 - 78 min post first-cleavage Ce + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 78 min post first-cleavage + worm_development + WBls:0000189 + 78 min post first-cleavage Ce - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6156,20 +6162,20 @@ - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 79 min post first-cleavage - worm_development - WBls:0000190 - 79 min post first-cleavage Ce + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 79 min post first-cleavage + worm_development + WBls:0000190 + 79 min post first-cleavage Ce - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6190,20 +6196,20 @@ - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 80 min post first-cleavage - worm_development - WBls:0000191 - 80 min post first-cleavage Ce + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 80 min post first-cleavage + worm_development + WBls:0000191 + 80 min post first-cleavage Ce - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6224,20 +6230,20 @@ - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 81 min post first-cleavage - worm_development - WBls:0000192 - 81 min post first-cleavage Ce + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 81 min post first-cleavage + worm_development + WBls:0000192 + 81 min post first-cleavage Ce - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6258,20 +6264,20 @@ - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 82 min post first-cleavage - worm_development - WBls:0000193 - 82 min post first-cleavage Ce + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 82 min post first-cleavage + worm_development + WBls:0000193 + 82 min post first-cleavage Ce - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6292,20 +6298,20 @@ - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 83 min post first-cleavage - worm_development - WBls:0000194 - 83 min post first-cleavage Ce + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 83 min post first-cleavage + worm_development + WBls:0000194 + 83 min post first-cleavage Ce - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6326,20 +6332,20 @@ - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 84 min post first-cleavage - worm_development - WBls:0000195 - 84 min post first-cleavage Ce + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 84 min post first-cleavage + worm_development + WBls:0000195 + 84 min post first-cleavage Ce - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6360,20 +6366,20 @@ - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 85 min post first-cleavage - worm_development - WBls:0000196 - 85 min post first-cleavage Ce + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 85 min post first-cleavage + worm_development + WBls:0000196 + 85 min post first-cleavage Ce - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6394,20 +6400,20 @@ - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 86 min post first-cleavage - worm_development - WBls:0000197 - 86 min post first-cleavage Ce + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 86 min post first-cleavage + worm_development + WBls:0000197 + 86 min post first-cleavage Ce - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6428,20 +6434,20 @@ - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 87 min post first-cleavage - worm_development - WBls:0000198 - 87 min post first-cleavage Ce + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 87 min post first-cleavage + worm_development + WBls:0000198 + 87 min post first-cleavage Ce - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6462,20 +6468,20 @@ - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 88 min post first-cleavage - worm_development - WBls:0000199 - 88 min post first-cleavage Ce + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 88 min post first-cleavage + worm_development + WBls:0000199 + 88 min post first-cleavage Ce - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6496,20 +6502,20 @@ - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 89 min post first-cleavage - worm_development - WBls:0000200 - 89 min post first-cleavage Ce + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 89 min post first-cleavage + worm_development + WBls:0000200 + 89 min post first-cleavage Ce - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6530,20 +6536,20 @@ - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 90 min post first-cleavage - worm_development - WBls:0000201 - 90 min post first-cleavage Ce + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 90 min post first-cleavage + worm_development + WBls:0000201 + 90 min post first-cleavage Ce - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6564,20 +6570,20 @@ - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 91 min post first-cleavage - worm_development - WBls:0000202 - 91 min post first-cleavage Ce + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 91 min post first-cleavage + worm_development + WBls:0000202 + 91 min post first-cleavage Ce - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6598,20 +6604,20 @@ - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 92 min post first-cleavage - worm_development - WBls:0000203 - 92 min post first-cleavage Ce + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 92 min post first-cleavage + worm_development + WBls:0000203 + 92 min post first-cleavage Ce - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6632,20 +6638,20 @@ - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 93 min post first-cleavage - worm_development - WBls:0000204 - 93 min post first-cleavage Ce + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 93 min post first-cleavage + worm_development + WBls:0000204 + 93 min post first-cleavage Ce - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6666,20 +6672,20 @@ - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 94 min post first-cleavage - worm_development - WBls:0000205 - 94 min post first-cleavage Ce + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 94 min post first-cleavage + worm_development + WBls:0000205 + 94 min post first-cleavage Ce - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6700,20 +6706,20 @@ - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 95 min post first-cleavage - worm_development - WBls:0000206 - 95 min post first-cleavage Ce + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 95 min post first-cleavage + worm_development + WBls:0000206 + 95 min post first-cleavage Ce - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6734,20 +6740,20 @@ - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 96 min post first-cleavage - worm_development - WBls:0000207 - 96 min post first-cleavage Ce + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 96 min post first-cleavage + worm_development + WBls:0000207 + 96 min post first-cleavage Ce - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6768,20 +6774,20 @@ - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 97 min post first-cleavage - worm_development - WBls:0000208 - 97 min post first-cleavage Ce + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 97 min post first-cleavage + worm_development + WBls:0000208 + 97 min post first-cleavage Ce - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6802,20 +6808,20 @@ - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 98 min post first-cleavage - worm_development - WBls:0000209 - 98 min post first-cleavage Ce + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 98 min post first-cleavage + worm_development + WBls:0000209 + 98 min post first-cleavage Ce - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6836,20 +6842,20 @@ - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 99 min post first-cleavage - worm_development - WBls:0000210 - 99 min post first-cleavage Ce + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 99 min post first-cleavage + worm_development + WBls:0000210 + 99 min post first-cleavage Ce - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6870,20 +6876,20 @@ - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 100 min post first-cleavage - worm_development - WBls:0000211 - 100 min post first-cleavage Ce + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 100 min post first-cleavage + worm_development + WBls:0000211 + 100 min post first-cleavage Ce - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6904,20 +6910,20 @@ - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 101 min post first-cleavage - worm_development - WBls:0000212 - 101 min post first-cleavage Ce + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 101 min post first-cleavage + worm_development + WBls:0000212 + 101 min post first-cleavage Ce - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6938,20 +6944,20 @@ - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 102 min post first-cleavage - worm_development - WBls:0000213 - 102 min post first-cleavage Ce + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 102 min post first-cleavage + worm_development + WBls:0000213 + 102 min post first-cleavage Ce - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6972,20 +6978,20 @@ - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 103 min post first-cleavage - worm_development - WBls:0000214 - 103 min post first-cleavage Ce + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 103 min post first-cleavage + worm_development + WBls:0000214 + 103 min post first-cleavage Ce - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7006,20 +7012,20 @@ - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 104 min post first-cleavage - worm_development - WBls:0000215 - 104 min post first-cleavage Ce + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 104 min post first-cleavage + worm_development + WBls:0000215 + 104 min post first-cleavage Ce - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7040,20 +7046,20 @@ - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 105 min post first-cleavage - worm_development - WBls:0000216 - 105 min post first-cleavage Ce + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 105 min post first-cleavage + worm_development + WBls:0000216 + 105 min post first-cleavage Ce - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7074,20 +7080,20 @@ - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 106 min post first-cleavage - worm_development - WBls:0000217 - 106 min post first-cleavage Ce + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 106 min post first-cleavage + worm_development + WBls:0000217 + 106 min post first-cleavage Ce - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7108,20 +7114,20 @@ - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 107 min post first-cleavage - worm_development - WBls:0000218 - 107 min post first-cleavage Ce + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 107 min post first-cleavage + worm_development + WBls:0000218 + 107 min post first-cleavage Ce - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7142,20 +7148,20 @@ - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 108 min post first-cleavage - worm_development - WBls:0000219 - 108 min post first-cleavage Ce + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 108 min post first-cleavage + worm_development + WBls:0000219 + 108 min post first-cleavage Ce - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7176,20 +7182,20 @@ - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 109 min post first-cleavage - worm_development - WBls:0000220 - 109 min post first-cleavage Ce + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 109 min post first-cleavage + worm_development + WBls:0000220 + 109 min post first-cleavage Ce - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7210,20 +7216,20 @@ - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 110 min post first-cleavage - worm_development - WBls:0000221 - 110 min post first-cleavage Ce + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 110 min post first-cleavage + worm_development + WBls:0000221 + 110 min post first-cleavage Ce - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7244,20 +7250,20 @@ - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 111 min post first-cleavage - worm_development - WBls:0000222 - 111 min post first-cleavage Ce + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 111 min post first-cleavage + worm_development + WBls:0000222 + 111 min post first-cleavage Ce - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7278,20 +7284,20 @@ - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 112 min post first-cleavage - worm_development - WBls:0000223 - 112 min post first-cleavage Ce + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 112 min post first-cleavage + worm_development + WBls:0000223 + 112 min post first-cleavage Ce - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7312,20 +7318,20 @@ - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 113 min post first-cleavage - worm_development - WBls:0000224 - 113 min post first-cleavage Ce + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 113 min post first-cleavage + worm_development + WBls:0000224 + 113 min post first-cleavage Ce - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7346,20 +7352,20 @@ - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 114 min post first-cleavage - worm_development - WBls:0000225 - 114 min post first-cleavage Ce + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 114 min post first-cleavage + worm_development + WBls:0000225 + 114 min post first-cleavage Ce - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7380,20 +7386,20 @@ - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 115 min post first-cleavage - worm_development - WBls:0000226 - 115 min post first-cleavage Ce + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 115 min post first-cleavage + worm_development + WBls:0000226 + 115 min post first-cleavage Ce - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7414,20 +7420,20 @@ - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 116 min post first-cleavage - worm_development - WBls:0000227 - 116 min post first-cleavage Ce + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 116 min post first-cleavage + worm_development + WBls:0000227 + 116 min post first-cleavage Ce - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7448,20 +7454,20 @@ - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 117 min post first-cleavage - worm_development - WBls:0000228 - 117 min post first-cleavage Ce + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 117 min post first-cleavage + worm_development + WBls:0000228 + 117 min post first-cleavage Ce - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7482,20 +7488,20 @@ - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 118 min post first-cleavage - worm_development - WBls:0000229 - 118 min post first-cleavage Ce + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 118 min post first-cleavage + worm_development + WBls:0000229 + 118 min post first-cleavage Ce - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7516,20 +7522,20 @@ - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 119 min post first-cleavage - worm_development - WBls:0000230 - 119 min post first-cleavage Ce + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 119 min post first-cleavage + worm_development + WBls:0000230 + 119 min post first-cleavage Ce - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7550,20 +7556,20 @@ - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 120 min post first-cleavage - worm_development - WBls:0000231 - 120 min post first-cleavage Ce + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 120 min post first-cleavage + worm_development + WBls:0000231 + 120 min post first-cleavage Ce - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7584,20 +7590,20 @@ - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 121 min post first-cleavage - worm_development - WBls:0000232 - 121 min post first-cleavage Ce + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 121 min post first-cleavage + worm_development + WBls:0000232 + 121 min post first-cleavage Ce - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7618,20 +7624,20 @@ - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 122 min post first-cleavage - worm_development - WBls:0000233 - 122 min post first-cleavage Ce + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 122 min post first-cleavage + worm_development + WBls:0000233 + 122 min post first-cleavage Ce - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7652,20 +7658,20 @@ - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 123 min post first-cleavage - worm_development - WBls:0000234 - 123 min post first-cleavage Ce + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 123 min post first-cleavage + worm_development + WBls:0000234 + 123 min post first-cleavage Ce - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7686,20 +7692,20 @@ - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 124 min post first-cleavage - worm_development - WBls:0000235 - 124 min post first-cleavage Ce + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 124 min post first-cleavage + worm_development + WBls:0000235 + 124 min post first-cleavage Ce - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7720,20 +7726,20 @@ - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 125 min post first-cleavage - worm_development - WBls:0000236 - 125 min post first-cleavage Ce + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 125 min post first-cleavage + worm_development + WBls:0000236 + 125 min post first-cleavage Ce - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7754,20 +7760,20 @@ - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 126 min post first-cleavage - worm_development - WBls:0000237 - 126 min post first-cleavage Ce + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 126 min post first-cleavage + worm_development + WBls:0000237 + 126 min post first-cleavage Ce - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7788,20 +7794,20 @@ - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 127 min post first-cleavage - worm_development - WBls:0000238 - 127 min post first-cleavage Ce + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 127 min post first-cleavage + worm_development + WBls:0000238 + 127 min post first-cleavage Ce - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7822,20 +7828,20 @@ - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 128 min post first-cleavage - worm_development - WBls:0000239 - 128 min post first-cleavage Ce + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 128 min post first-cleavage + worm_development + WBls:0000239 + 128 min post first-cleavage Ce - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7856,20 +7862,20 @@ - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 129 min post first-cleavage - worm_development - WBls:0000240 - 129 min post first-cleavage Ce + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 129 min post first-cleavage + worm_development + WBls:0000240 + 129 min post first-cleavage Ce - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7890,20 +7896,20 @@ - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 130 min post first-cleavage - worm_development - WBls:0000241 - 130 min post first-cleavage Ce + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 130 min post first-cleavage + worm_development + WBls:0000241 + 130 min post first-cleavage Ce - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7924,20 +7930,20 @@ - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 131 min post first-cleavage - worm_development - WBls:0000242 - 131 min post first-cleavage Ce + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 131 min post first-cleavage + worm_development + WBls:0000242 + 131 min post first-cleavage Ce - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7958,20 +7964,20 @@ - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 132 min post first-cleavage - worm_development - WBls:0000243 - 132 min post first-cleavage Ce + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 132 min post first-cleavage + worm_development + WBls:0000243 + 132 min post first-cleavage Ce - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7992,20 +7998,20 @@ - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 133 min post first-cleavage - worm_development - WBls:0000244 - 133 min post first-cleavage Ce + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 133 min post first-cleavage + worm_development + WBls:0000244 + 133 min post first-cleavage Ce - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8026,20 +8032,20 @@ - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 134 min post first-cleavage - worm_development - WBls:0000245 - 134 min post first-cleavage Ce + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 134 min post first-cleavage + worm_development + WBls:0000245 + 134 min post first-cleavage Ce - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8060,20 +8066,20 @@ - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 135 min post first-cleavage - worm_development - WBls:0000246 - 135 min post first-cleavage Ce + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 135 min post first-cleavage + worm_development + WBls:0000246 + 135 min post first-cleavage Ce - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8094,20 +8100,20 @@ - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 136 min post first-cleavage - worm_development - WBls:0000247 - 136 min post first-cleavage Ce + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 136 min post first-cleavage + worm_development + WBls:0000247 + 136 min post first-cleavage Ce - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8128,20 +8134,20 @@ - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 137 min post first-cleavage - worm_development - WBls:0000248 - 137 min post first-cleavage Ce + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 137 min post first-cleavage + worm_development + WBls:0000248 + 137 min post first-cleavage Ce - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8162,20 +8168,20 @@ - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 138 min post first-cleavage - worm_development - WBls:0000249 - 138 min post first-cleavage Ce + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 138 min post first-cleavage + worm_development + WBls:0000249 + 138 min post first-cleavage Ce - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8196,20 +8202,20 @@ - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 139 min post first-cleavage - worm_development - WBls:0000250 - 139 min post first-cleavage Ce + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 139 min post first-cleavage + worm_development + WBls:0000250 + 139 min post first-cleavage Ce - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8230,20 +8236,20 @@ - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 140 min post first-cleavage - worm_development - WBls:0000251 - 140 min post first-cleavage Ce + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 140 min post first-cleavage + worm_development + WBls:0000251 + 140 min post first-cleavage Ce - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8264,20 +8270,20 @@ - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 141 min post first-cleavage - worm_development - WBls:0000252 - 141 min post first-cleavage Ce + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 141 min post first-cleavage + worm_development + WBls:0000252 + 141 min post first-cleavage Ce - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8298,20 +8304,20 @@ - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 142 min post first-cleavage - worm_development - WBls:0000253 - 142 min post first-cleavage Ce + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 142 min post first-cleavage + worm_development + WBls:0000253 + 142 min post first-cleavage Ce - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8332,20 +8338,20 @@ - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 143 min post first-cleavage - worm_development - WBls:0000254 - 143 min post first-cleavage Ce + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 143 min post first-cleavage + worm_development + WBls:0000254 + 143 min post first-cleavage Ce - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8366,20 +8372,20 @@ - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 144 min post first-cleavage - worm_development - WBls:0000255 - 144 min post first-cleavage Ce + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 144 min post first-cleavage + worm_development + WBls:0000255 + 144 min post first-cleavage Ce - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8400,20 +8406,20 @@ - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 145 min post first-cleavage - worm_development - WBls:0000256 - 145 min post first-cleavage Ce + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 145 min post first-cleavage + worm_development + WBls:0000256 + 145 min post first-cleavage Ce - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8434,20 +8440,20 @@ - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 146 min post first-cleavage - worm_development - WBls:0000257 - 146 min post first-cleavage Ce + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 146 min post first-cleavage + worm_development + WBls:0000257 + 146 min post first-cleavage Ce - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8468,20 +8474,20 @@ - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 147 min post first-cleavage - worm_development - WBls:0000258 - 147 min post first-cleavage Ce + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 147 min post first-cleavage + worm_development + WBls:0000258 + 147 min post first-cleavage Ce - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8502,20 +8508,20 @@ - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 148 min post first-cleavage - worm_development - WBls:0000259 - 148 min post first-cleavage Ce + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 148 min post first-cleavage + worm_development + WBls:0000259 + 148 min post first-cleavage Ce - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8536,20 +8542,20 @@ - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 149 min post first-cleavage - worm_development - WBls:0000260 - 149 min post first-cleavage Ce + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 149 min post first-cleavage + worm_development + WBls:0000260 + 149 min post first-cleavage Ce - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8570,20 +8576,20 @@ - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 150 min post first-cleavage - worm_development - WBls:0000261 - 150 min post first-cleavage Ce + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 150 min post first-cleavage + worm_development + WBls:0000261 + 150 min post first-cleavage Ce - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8604,20 +8610,20 @@ - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 151 min post first-cleavage - worm_development - WBls:0000262 - 151 min post first-cleavage Ce + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 151 min post first-cleavage + worm_development + WBls:0000262 + 151 min post first-cleavage Ce - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8638,20 +8644,20 @@ - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 152 min post first-cleavage - worm_development - WBls:0000263 - 152 min post first-cleavage Ce + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 152 min post first-cleavage + worm_development + WBls:0000263 + 152 min post first-cleavage Ce - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8672,20 +8678,20 @@ - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 153 min post first-cleavage - worm_development - WBls:0000264 - 153 min post first-cleavage Ce + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 153 min post first-cleavage + worm_development + WBls:0000264 + 153 min post first-cleavage Ce - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8706,20 +8712,20 @@ - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 154 min post first-cleavage - worm_development - WBls:0000265 - 154 min post first-cleavage Ce + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 154 min post first-cleavage + worm_development + WBls:0000265 + 154 min post first-cleavage Ce - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8740,20 +8746,20 @@ - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 155 min post first-cleavage - worm_development - WBls:0000266 - 155 min post first-cleavage Ce + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 155 min post first-cleavage + worm_development + WBls:0000266 + 155 min post first-cleavage Ce - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8774,20 +8780,20 @@ - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 156 min post first-cleavage - worm_development - WBls:0000267 - 156 min post first-cleavage Ce + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 156 min post first-cleavage + worm_development + WBls:0000267 + 156 min post first-cleavage Ce - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8808,20 +8814,20 @@ - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 157 min post first-cleavage - worm_development - WBls:0000268 - 157 min post first-cleavage Ce + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 157 min post first-cleavage + worm_development + WBls:0000268 + 157 min post first-cleavage Ce - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8842,20 +8848,20 @@ - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 158 min post first-cleavage - worm_development - WBls:0000269 - 158 min post first-cleavage Ce + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 158 min post first-cleavage + worm_development + WBls:0000269 + 158 min post first-cleavage Ce - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8876,20 +8882,20 @@ - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 159 min post first-cleavage - worm_development - WBls:0000270 - 159 min post first-cleavage Ce + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 159 min post first-cleavage + worm_development + WBls:0000270 + 159 min post first-cleavage Ce - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8910,20 +8916,20 @@ - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 160 min post first-cleavage - worm_development - WBls:0000271 - 160 min post first-cleavage Ce + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 160 min post first-cleavage + worm_development + WBls:0000271 + 160 min post first-cleavage Ce - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8944,20 +8950,20 @@ - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 161 min post first-cleavage - worm_development - WBls:0000272 - 161 min post first-cleavage Ce + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 161 min post first-cleavage + worm_development + WBls:0000272 + 161 min post first-cleavage Ce - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8978,20 +8984,20 @@ - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 162 min post first-cleavage - worm_development - WBls:0000273 - 162 min post first-cleavage Ce + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 162 min post first-cleavage + worm_development + WBls:0000273 + 162 min post first-cleavage Ce - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9012,20 +9018,20 @@ - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 163 min post first-cleavage - worm_development - WBls:0000274 - 163 min post first-cleavage Ce + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 163 min post first-cleavage + worm_development + WBls:0000274 + 163 min post first-cleavage Ce - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9046,20 +9052,20 @@ - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 164 min post first-cleavage - worm_development - WBls:0000275 - 164 min post first-cleavage Ce + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 164 min post first-cleavage + worm_development + WBls:0000275 + 164 min post first-cleavage Ce - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9080,20 +9086,20 @@ - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 165 min post first-cleavage - worm_development - WBls:0000276 - 165 min post first-cleavage Ce + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 165 min post first-cleavage + worm_development + WBls:0000276 + 165 min post first-cleavage Ce - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9114,20 +9120,20 @@ - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 166 min post first-cleavage - worm_development - WBls:0000277 - 166 min post first-cleavage Ce + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 166 min post first-cleavage + worm_development + WBls:0000277 + 166 min post first-cleavage Ce - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9148,20 +9154,20 @@ - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 167 min post first-cleavage - worm_development - WBls:0000278 - 167 min post first-cleavage Ce + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 167 min post first-cleavage + worm_development + WBls:0000278 + 167 min post first-cleavage Ce - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9182,20 +9188,20 @@ - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 168 min post first-cleavage - worm_development - WBls:0000279 - 168 min post first-cleavage Ce + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 168 min post first-cleavage + worm_development + WBls:0000279 + 168 min post first-cleavage Ce - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9216,20 +9222,20 @@ - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 169 min post first-cleavage - worm_development - WBls:0000280 - 169 min post first-cleavage Ce + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 169 min post first-cleavage + worm_development + WBls:0000280 + 169 min post first-cleavage Ce - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9250,20 +9256,20 @@ - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 170 min post first-cleavage - worm_development - WBls:0000281 - 170 min post first-cleavage Ce + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 170 min post first-cleavage + worm_development + WBls:0000281 + 170 min post first-cleavage Ce - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9284,20 +9290,20 @@ - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 171 min post first-cleavage - worm_development - WBls:0000282 - 171 min post first-cleavage Ce + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 171 min post first-cleavage + worm_development + WBls:0000282 + 171 min post first-cleavage Ce - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9318,20 +9324,20 @@ - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 172 min post first-cleavage - worm_development - WBls:0000283 - 172 min post first-cleavage Ce + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 172 min post first-cleavage + worm_development + WBls:0000283 + 172 min post first-cleavage Ce - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9352,20 +9358,20 @@ - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 173 min post first-cleavage - worm_development - WBls:0000284 - 173 min post first-cleavage Ce + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 173 min post first-cleavage + worm_development + WBls:0000284 + 173 min post first-cleavage Ce - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9386,20 +9392,20 @@ - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 174 min post first-cleavage - worm_development - WBls:0000285 - 174 min post first-cleavage Ce + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 174 min post first-cleavage + worm_development + WBls:0000285 + 174 min post first-cleavage Ce - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9420,20 +9426,20 @@ - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 175 min post first-cleavage - worm_development - WBls:0000286 - 175 min post first-cleavage Ce + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 175 min post first-cleavage + worm_development + WBls:0000286 + 175 min post first-cleavage Ce - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9454,20 +9460,20 @@ - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 176 min post first-cleavage - worm_development - WBls:0000287 - 176 min post first-cleavage Ce + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 176 min post first-cleavage + worm_development + WBls:0000287 + 176 min post first-cleavage Ce - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9488,20 +9494,20 @@ - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 177 min post first-cleavage - worm_development - WBls:0000288 - 177 min post first-cleavage Ce + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 177 min post first-cleavage + worm_development + WBls:0000288 + 177 min post first-cleavage Ce - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9522,20 +9528,20 @@ - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 178 min post first-cleavage - worm_development - WBls:0000289 - 178 min post first-cleavage Ce + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 178 min post first-cleavage + worm_development + WBls:0000289 + 178 min post first-cleavage Ce - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9556,20 +9562,20 @@ - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 179 min post first-cleavage - worm_development - WBls:0000290 - 179 min post first-cleavage Ce + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 179 min post first-cleavage + worm_development + WBls:0000290 + 179 min post first-cleavage Ce - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9590,20 +9596,20 @@ - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 180 min post first-cleavage - worm_development - WBls:0000291 - 180 min post first-cleavage Ce + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 180 min post first-cleavage + worm_development + WBls:0000291 + 180 min post first-cleavage Ce - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9624,20 +9630,20 @@ - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 181 min post first-cleavage - worm_development - WBls:0000292 - 181 min post first-cleavage Ce + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 181 min post first-cleavage + worm_development + WBls:0000292 + 181 min post first-cleavage Ce - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9658,20 +9664,20 @@ - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 182 min post first-cleavage - worm_development - WBls:0000293 - 182 min post first-cleavage Ce + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 182 min post first-cleavage + worm_development + WBls:0000293 + 182 min post first-cleavage Ce - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9692,20 +9698,20 @@ - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 183 min post first-cleavage - worm_development - WBls:0000294 - 183 min post first-cleavage Ce + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 183 min post first-cleavage + worm_development + WBls:0000294 + 183 min post first-cleavage Ce - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9726,20 +9732,20 @@ - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 184 min post first-cleavage - worm_development - WBls:0000295 - 184 min post first-cleavage Ce + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 184 min post first-cleavage + worm_development + WBls:0000295 + 184 min post first-cleavage Ce - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9760,20 +9766,20 @@ - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 185 min post first-cleavage - worm_development - WBls:0000296 - 185 min post first-cleavage Ce + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 185 min post first-cleavage + worm_development + WBls:0000296 + 185 min post first-cleavage Ce - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9794,20 +9800,20 @@ - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 186 min post first-cleavage - worm_development - WBls:0000297 - 186 min post first-cleavage Ce + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 186 min post first-cleavage + worm_development + WBls:0000297 + 186 min post first-cleavage Ce - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9828,20 +9834,20 @@ - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 187 min post first-cleavage - worm_development - WBls:0000298 - 187 min post first-cleavage Ce + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 187 min post first-cleavage + worm_development + WBls:0000298 + 187 min post first-cleavage Ce - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9862,20 +9868,20 @@ - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 188 min post first-cleavage - worm_development - WBls:0000299 - 188 min post first-cleavage Ce + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 188 min post first-cleavage + worm_development + WBls:0000299 + 188 min post first-cleavage Ce - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9896,20 +9902,20 @@ - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 189 min post first-cleavage - worm_development - WBls:0000300 - 189 min post first-cleavage Ce + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 189 min post first-cleavage + worm_development + WBls:0000300 + 189 min post first-cleavage Ce - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9930,20 +9936,20 @@ - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 190 min post first-cleavage - worm_development - WBls:0000301 - 190 min post first-cleavage Ce + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 190 min post first-cleavage + worm_development + WBls:0000301 + 190 min post first-cleavage Ce - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9964,20 +9970,20 @@ - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 191 min post first-cleavage - worm_development - WBls:0000302 - 191 min post first-cleavage Ce + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 191 min post first-cleavage + worm_development + WBls:0000302 + 191 min post first-cleavage Ce - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9998,20 +10004,20 @@ - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 192 min post first-cleavage - worm_development - WBls:0000303 - 192 min post first-cleavage Ce + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 192 min post first-cleavage + worm_development + WBls:0000303 + 192 min post first-cleavage Ce - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10032,20 +10038,20 @@ - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 193 min post first-cleavage - worm_development - WBls:0000304 - 193 min post first-cleavage Ce + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 193 min post first-cleavage + worm_development + WBls:0000304 + 193 min post first-cleavage Ce - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10066,20 +10072,20 @@ - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 194 min post first-cleavage - worm_development - WBls:0000305 - 194 min post first-cleavage Ce + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 194 min post first-cleavage + worm_development + WBls:0000305 + 194 min post first-cleavage Ce - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10100,20 +10106,20 @@ - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 195 min post first-cleavage - worm_development - WBls:0000306 - 195 min post first-cleavage Ce + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 195 min post first-cleavage + worm_development + WBls:0000306 + 195 min post first-cleavage Ce - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10134,20 +10140,20 @@ - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 196 min post first-cleavage - worm_development - WBls:0000307 - 196 min post first-cleavage Ce + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 196 min post first-cleavage + worm_development + WBls:0000307 + 196 min post first-cleavage Ce - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10168,20 +10174,20 @@ - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 197 min post first-cleavage - worm_development - WBls:0000308 - 197 min post first-cleavage Ce + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 197 min post first-cleavage + worm_development + WBls:0000308 + 197 min post first-cleavage Ce - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10202,20 +10208,20 @@ - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 198 min post first-cleavage - worm_development - WBls:0000309 - 198 min post first-cleavage Ce + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 198 min post first-cleavage + worm_development + WBls:0000309 + 198 min post first-cleavage Ce - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10236,20 +10242,20 @@ - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 199 min post first-cleavage - worm_development - WBls:0000310 - 199 min post first-cleavage Ce + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 199 min post first-cleavage + worm_development + WBls:0000310 + 199 min post first-cleavage Ce - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10270,20 +10276,20 @@ - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 200 min post first-cleavage - worm_development - WBls:0000311 - 200 min post first-cleavage Ce + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 200 min post first-cleavage + worm_development + WBls:0000311 + 200 min post first-cleavage Ce - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10304,20 +10310,20 @@ - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 201 min post first-cleavage - worm_development - WBls:0000312 - 201 min post first-cleavage Ce + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 201 min post first-cleavage + worm_development + WBls:0000312 + 201 min post first-cleavage Ce - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10338,20 +10344,20 @@ - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 202 min post first-cleavage - worm_development - WBls:0000313 - 202 min post first-cleavage Ce + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 202 min post first-cleavage + worm_development + WBls:0000313 + 202 min post first-cleavage Ce - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10372,20 +10378,20 @@ - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 203 min post first-cleavage - worm_development - WBls:0000314 - 203 min post first-cleavage Ce + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 203 min post first-cleavage + worm_development + WBls:0000314 + 203 min post first-cleavage Ce - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10406,20 +10412,20 @@ - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 204 min post first-cleavage - worm_development - WBls:0000315 - 204 min post first-cleavage Ce + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 204 min post first-cleavage + worm_development + WBls:0000315 + 204 min post first-cleavage Ce - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10440,20 +10446,20 @@ - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 205 min post first-cleavage - worm_development - WBls:0000316 - 205 min post first-cleavage Ce + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 205 min post first-cleavage + worm_development + WBls:0000316 + 205 min post first-cleavage Ce - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10474,20 +10480,20 @@ - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 206 min post first-cleavage - worm_development - WBls:0000317 - 206 min post first-cleavage Ce + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 206 min post first-cleavage + worm_development + WBls:0000317 + 206 min post first-cleavage Ce - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10508,20 +10514,20 @@ - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 207 min post first-cleavage - worm_development - WBls:0000318 - 207 min post first-cleavage Ce + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 207 min post first-cleavage + worm_development + WBls:0000318 + 207 min post first-cleavage Ce - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10542,20 +10548,20 @@ - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 208 min post first-cleavage - worm_development - WBls:0000319 - 208 min post first-cleavage Ce + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 208 min post first-cleavage + worm_development + WBls:0000319 + 208 min post first-cleavage Ce - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10576,20 +10582,20 @@ - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 209 min post first-cleavage - worm_development - WBls:0000320 - 209 min post first-cleavage Ce + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 209 min post first-cleavage + worm_development + WBls:0000320 + 209 min post first-cleavage Ce - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10610,20 +10616,20 @@ - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 210 min post first-cleavage - worm_development - WBls:0000321 - 210 min post first-cleavage Ce + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 210 min post first-cleavage + worm_development + WBls:0000321 + 210 min post first-cleavage Ce - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10644,20 +10650,20 @@ - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 211 min post first-cleavage - worm_development - WBls:0000322 - 211 min post first-cleavage Ce + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 211 min post first-cleavage + worm_development + WBls:0000322 + 211 min post first-cleavage Ce - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10678,20 +10684,20 @@ - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 212 min post first-cleavage - worm_development - WBls:0000323 - 212 min post first-cleavage Ce + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 212 min post first-cleavage + worm_development + WBls:0000323 + 212 min post first-cleavage Ce - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10712,20 +10718,20 @@ - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 213 min post first-cleavage - worm_development - WBls:0000324 - 213 min post first-cleavage Ce + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 213 min post first-cleavage + worm_development + WBls:0000324 + 213 min post first-cleavage Ce - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10746,20 +10752,20 @@ - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 214 min post first-cleavage - worm_development - WBls:0000325 - 214 min post first-cleavage Ce + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 214 min post first-cleavage + worm_development + WBls:0000325 + 214 min post first-cleavage Ce - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10780,20 +10786,20 @@ - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 215 min post first-cleavage - worm_development - WBls:0000326 - 215 min post first-cleavage Ce + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 215 min post first-cleavage + worm_development + WBls:0000326 + 215 min post first-cleavage Ce - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10814,20 +10820,20 @@ - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 216 min post first-cleavage - worm_development - WBls:0000327 - 216 min post first-cleavage Ce + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 216 min post first-cleavage + worm_development + WBls:0000327 + 216 min post first-cleavage Ce - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10848,20 +10854,20 @@ - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 217 min post first-cleavage - worm_development - WBls:0000328 - 217 min post first-cleavage Ce + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 217 min post first-cleavage + worm_development + WBls:0000328 + 217 min post first-cleavage Ce - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10882,20 +10888,20 @@ - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 218 min post first-cleavage - worm_development - WBls:0000329 - 218 min post first-cleavage Ce + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 218 min post first-cleavage + worm_development + WBls:0000329 + 218 min post first-cleavage Ce - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10916,20 +10922,20 @@ - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 219 min post first-cleavage - worm_development - WBls:0000330 - 219 min post first-cleavage Ce + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 219 min post first-cleavage + worm_development + WBls:0000330 + 219 min post first-cleavage Ce - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10950,20 +10956,20 @@ - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 220 min post first-cleavage - worm_development - WBls:0000331 - 220 min post first-cleavage Ce + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 220 min post first-cleavage + worm_development + WBls:0000331 + 220 min post first-cleavage Ce - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10984,20 +10990,20 @@ - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 221 min post first-cleavage - worm_development - WBls:0000332 - 221 min post first-cleavage Ce + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 221 min post first-cleavage + worm_development + WBls:0000332 + 221 min post first-cleavage Ce - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11018,20 +11024,20 @@ - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 222 min post first-cleavage - worm_development - WBls:0000333 - 222 min post first-cleavage Ce + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 222 min post first-cleavage + worm_development + WBls:0000333 + 222 min post first-cleavage Ce - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11052,20 +11058,20 @@ - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 223 min post first-cleavage - worm_development - WBls:0000334 - 223 min post first-cleavage Ce + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 223 min post first-cleavage + worm_development + WBls:0000334 + 223 min post first-cleavage Ce - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11086,20 +11092,20 @@ - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 224 min post first-cleavage - worm_development - WBls:0000335 - 224 min post first-cleavage Ce + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 224 min post first-cleavage + worm_development + WBls:0000335 + 224 min post first-cleavage Ce - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11120,20 +11126,20 @@ - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 225 min post first-cleavage - worm_development - WBls:0000336 - 225 min post first-cleavage Ce + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 225 min post first-cleavage + worm_development + WBls:0000336 + 225 min post first-cleavage Ce - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11154,20 +11160,20 @@ - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 226 min post first-cleavage - worm_development - WBls:0000337 - 226 min post first-cleavage Ce + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 226 min post first-cleavage + worm_development + WBls:0000337 + 226 min post first-cleavage Ce - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11188,20 +11194,20 @@ - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 227 min post first-cleavage - worm_development - WBls:0000338 - 227 min post first-cleavage Ce + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 227 min post first-cleavage + worm_development + WBls:0000338 + 227 min post first-cleavage Ce - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11222,20 +11228,20 @@ - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 228 min post first-cleavage - worm_development - WBls:0000339 - 228 min post first-cleavage Ce + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 228 min post first-cleavage + worm_development + WBls:0000339 + 228 min post first-cleavage Ce - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11256,20 +11262,20 @@ - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 229 min post first-cleavage - worm_development - WBls:0000340 - 229 min post first-cleavage Ce + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 229 min post first-cleavage + worm_development + WBls:0000340 + 229 min post first-cleavage Ce - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11290,20 +11296,20 @@ - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 230 min post first-cleavage - worm_development - WBls:0000341 - 230 min post first-cleavage Ce + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 230 min post first-cleavage + worm_development + WBls:0000341 + 230 min post first-cleavage Ce - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11324,20 +11330,20 @@ - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 231 min post first-cleavage - worm_development - WBls:0000342 - 231 min post first-cleavage Ce + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 231 min post first-cleavage + worm_development + WBls:0000342 + 231 min post first-cleavage Ce - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11358,20 +11364,20 @@ - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 232 min post first-cleavage - worm_development - WBls:0000343 - 232 min post first-cleavage Ce + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 232 min post first-cleavage + worm_development + WBls:0000343 + 232 min post first-cleavage Ce - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11392,20 +11398,20 @@ - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 233 min post first-cleavage - worm_development - WBls:0000344 - 233 min post first-cleavage Ce + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 233 min post first-cleavage + worm_development + WBls:0000344 + 233 min post first-cleavage Ce - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11426,20 +11432,20 @@ - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 234 min post first-cleavage - worm_development - WBls:0000345 - 234 min post first-cleavage Ce + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 234 min post first-cleavage + worm_development + WBls:0000345 + 234 min post first-cleavage Ce - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11460,20 +11466,20 @@ - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 235 min post first-cleavage - worm_development - WBls:0000346 - 235 min post first-cleavage Ce + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 235 min post first-cleavage + worm_development + WBls:0000346 + 235 min post first-cleavage Ce - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11494,20 +11500,20 @@ - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 236 min post first-cleavage - worm_development - WBls:0000347 - 236 min post first-cleavage Ce + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 236 min post first-cleavage + worm_development + WBls:0000347 + 236 min post first-cleavage Ce - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11528,20 +11534,20 @@ - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 237 min post first-cleavage - worm_development - WBls:0000348 - 237 min post first-cleavage Ce + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 237 min post first-cleavage + worm_development + WBls:0000348 + 237 min post first-cleavage Ce - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11562,20 +11568,20 @@ - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 238 min post first-cleavage - worm_development - WBls:0000349 - 238 min post first-cleavage Ce + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 238 min post first-cleavage + worm_development + WBls:0000349 + 238 min post first-cleavage Ce - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11596,20 +11602,20 @@ - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 239 min post first-cleavage - worm_development - WBls:0000350 - 239 min post first-cleavage Ce + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 239 min post first-cleavage + worm_development + WBls:0000350 + 239 min post first-cleavage Ce - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11630,20 +11636,20 @@ - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 240 min post first-cleavage - worm_development - WBls:0000351 - 240 min post first-cleavage Ce + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 240 min post first-cleavage + worm_development + WBls:0000351 + 240 min post first-cleavage Ce - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11664,20 +11670,20 @@ - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 241 min post first-cleavage - worm_development - WBls:0000352 - 241 min post first-cleavage Ce + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 241 min post first-cleavage + worm_development + WBls:0000352 + 241 min post first-cleavage Ce - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11698,20 +11704,20 @@ - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 242 min post first-cleavage - worm_development - WBls:0000353 - 242 min post first-cleavage Ce + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 242 min post first-cleavage + worm_development + WBls:0000353 + 242 min post first-cleavage Ce - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11732,20 +11738,20 @@ - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 243 min post first-cleavage - worm_development - WBls:0000354 - 243 min post first-cleavage Ce + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 243 min post first-cleavage + worm_development + WBls:0000354 + 243 min post first-cleavage Ce - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11766,20 +11772,20 @@ - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 244 min post first-cleavage - worm_development - WBls:0000355 - 244 min post first-cleavage Ce + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 244 min post first-cleavage + worm_development + WBls:0000355 + 244 min post first-cleavage Ce - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11800,20 +11806,20 @@ - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 245 min post first-cleavage - worm_development - WBls:0000356 - 245 min post first-cleavage Ce + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 245 min post first-cleavage + worm_development + WBls:0000356 + 245 min post first-cleavage Ce - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11834,20 +11840,20 @@ - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 246 min post first-cleavage - worm_development - WBls:0000357 - 246 min post first-cleavage Ce + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 246 min post first-cleavage + worm_development + WBls:0000357 + 246 min post first-cleavage Ce - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11868,20 +11874,20 @@ - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 247 min post first-cleavage - worm_development - WBls:0000358 - 247 min post first-cleavage Ce + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 247 min post first-cleavage + worm_development + WBls:0000358 + 247 min post first-cleavage Ce - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11902,20 +11908,20 @@ - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 248 min post first-cleavage - worm_development - WBls:0000359 - 248 min post first-cleavage Ce + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 248 min post first-cleavage + worm_development + WBls:0000359 + 248 min post first-cleavage Ce - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11936,20 +11942,20 @@ - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 249 min post first-cleavage - worm_development - WBls:0000360 - 249 min post first-cleavage Ce + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 249 min post first-cleavage + worm_development + WBls:0000360 + 249 min post first-cleavage Ce - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11970,20 +11976,20 @@ - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 250 min post first-cleavage - worm_development - WBls:0000361 - 250 min post first-cleavage Ce + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 250 min post first-cleavage + worm_development + WBls:0000361 + 250 min post first-cleavage Ce - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12004,20 +12010,20 @@ - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 251 min post first-cleavage - worm_development - WBls:0000362 - 251 min post first-cleavage Ce + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 251 min post first-cleavage + worm_development + WBls:0000362 + 251 min post first-cleavage Ce - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12038,20 +12044,20 @@ - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 252 min post first-cleavage - worm_development - WBls:0000363 - 252 min post first-cleavage Ce + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 252 min post first-cleavage + worm_development + WBls:0000363 + 252 min post first-cleavage Ce - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12072,20 +12078,20 @@ - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 253 min post first-cleavage - worm_development - WBls:0000364 - 253 min post first-cleavage Ce + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 253 min post first-cleavage + worm_development + WBls:0000364 + 253 min post first-cleavage Ce - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12106,20 +12112,20 @@ - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 254 min post first-cleavage - worm_development - WBls:0000365 - 254 min post first-cleavage Ce + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 254 min post first-cleavage + worm_development + WBls:0000365 + 254 min post first-cleavage Ce - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12140,20 +12146,20 @@ - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 255 min post first-cleavage - worm_development - WBls:0000366 - 255 min post first-cleavage Ce + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 255 min post first-cleavage + worm_development + WBls:0000366 + 255 min post first-cleavage Ce - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12174,20 +12180,20 @@ - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 256 min post first-cleavage - worm_development - WBls:0000367 - 256 min post first-cleavage Ce + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 256 min post first-cleavage + worm_development + WBls:0000367 + 256 min post first-cleavage Ce - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12208,20 +12214,20 @@ - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 257 min post first-cleavage - worm_development - WBls:0000368 - 257 min post first-cleavage Ce + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 257 min post first-cleavage + worm_development + WBls:0000368 + 257 min post first-cleavage Ce - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12242,20 +12248,20 @@ - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 258 min post first-cleavage - worm_development - WBls:0000369 - 258 min post first-cleavage Ce + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 258 min post first-cleavage + worm_development + WBls:0000369 + 258 min post first-cleavage Ce - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12276,20 +12282,20 @@ - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 259 min post first-cleavage - worm_development - WBls:0000370 - 259 min post first-cleavage Ce + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 259 min post first-cleavage + worm_development + WBls:0000370 + 259 min post first-cleavage Ce - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12310,20 +12316,20 @@ - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 260 min post first-cleavage - worm_development - WBls:0000371 - 260 min post first-cleavage Ce + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 260 min post first-cleavage + worm_development + WBls:0000371 + 260 min post first-cleavage Ce - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12344,20 +12350,20 @@ - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 261 min post first-cleavage - worm_development - WBls:0000372 - 261 min post first-cleavage Ce + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 261 min post first-cleavage + worm_development + WBls:0000372 + 261 min post first-cleavage Ce - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12378,20 +12384,20 @@ - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 262 min post first-cleavage - worm_development - WBls:0000373 - 262 min post first-cleavage Ce + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 262 min post first-cleavage + worm_development + WBls:0000373 + 262 min post first-cleavage Ce - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12412,20 +12418,20 @@ - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 263 min post first-cleavage - worm_development - WBls:0000374 - 263 min post first-cleavage Ce + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 263 min post first-cleavage + worm_development + WBls:0000374 + 263 min post first-cleavage Ce - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12446,20 +12452,20 @@ - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 264 min post first-cleavage - worm_development - WBls:0000375 - 264 min post first-cleavage Ce + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 264 min post first-cleavage + worm_development + WBls:0000375 + 264 min post first-cleavage Ce - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12480,20 +12486,20 @@ - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 265 min post first-cleavage - worm_development - WBls:0000376 - 265 min post first-cleavage Ce + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 265 min post first-cleavage + worm_development + WBls:0000376 + 265 min post first-cleavage Ce - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12514,20 +12520,20 @@ - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 266 min post first-cleavage - worm_development - WBls:0000377 - 266 min post first-cleavage Ce + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 266 min post first-cleavage + worm_development + WBls:0000377 + 266 min post first-cleavage Ce - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12548,20 +12554,20 @@ - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 267 min post first-cleavage - worm_development - WBls:0000378 - 267 min post first-cleavage Ce + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 267 min post first-cleavage + worm_development + WBls:0000378 + 267 min post first-cleavage Ce - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12582,20 +12588,20 @@ - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 268 min post first-cleavage - worm_development - WBls:0000379 - 268 min post first-cleavage Ce + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 268 min post first-cleavage + worm_development + WBls:0000379 + 268 min post first-cleavage Ce - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12616,20 +12622,20 @@ - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 269 min post first-cleavage - worm_development - WBls:0000380 - 269 min post first-cleavage Ce + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 269 min post first-cleavage + worm_development + WBls:0000380 + 269 min post first-cleavage Ce - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12650,20 +12656,20 @@ - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 270 min post first-cleavage - worm_development - WBls:0000381 - 270 min post first-cleavage Ce + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 270 min post first-cleavage + worm_development + WBls:0000381 + 270 min post first-cleavage Ce - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12684,20 +12690,20 @@ - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 271 min post first-cleavage - worm_development - WBls:0000382 - 271 min post first-cleavage Ce + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 271 min post first-cleavage + worm_development + WBls:0000382 + 271 min post first-cleavage Ce - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12718,20 +12724,20 @@ - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 272 min post first-cleavage - worm_development - WBls:0000383 - 272 min post first-cleavage Ce + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 272 min post first-cleavage + worm_development + WBls:0000383 + 272 min post first-cleavage Ce - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12752,20 +12758,20 @@ - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 273 min post first-cleavage - worm_development - WBls:0000384 - 273 min post first-cleavage Ce + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 273 min post first-cleavage + worm_development + WBls:0000384 + 273 min post first-cleavage Ce - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12786,20 +12792,20 @@ - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 274 min post first-cleavage - worm_development - WBls:0000385 - 274 min post first-cleavage Ce + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 274 min post first-cleavage + worm_development + WBls:0000385 + 274 min post first-cleavage Ce - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12820,20 +12826,20 @@ - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 275 min post first-cleavage - worm_development - WBls:0000386 - 275 min post first-cleavage Ce + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 275 min post first-cleavage + worm_development + WBls:0000386 + 275 min post first-cleavage Ce - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12854,20 +12860,20 @@ - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 276 min post first-cleavage - worm_development - WBls:0000387 - 276 min post first-cleavage Ce + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 276 min post first-cleavage + worm_development + WBls:0000387 + 276 min post first-cleavage Ce - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12888,20 +12894,20 @@ - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 277 min post first-cleavage - worm_development - WBls:0000388 - 277 min post first-cleavage Ce + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 277 min post first-cleavage + worm_development + WBls:0000388 + 277 min post first-cleavage Ce - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12922,20 +12928,20 @@ - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 278 min post first-cleavage - worm_development - WBls:0000389 - 278 min post first-cleavage Ce + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 278 min post first-cleavage + worm_development + WBls:0000389 + 278 min post first-cleavage Ce - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12956,20 +12962,20 @@ - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 279 min post first-cleavage - worm_development - WBls:0000390 - 279 min post first-cleavage Ce + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 279 min post first-cleavage + worm_development + WBls:0000390 + 279 min post first-cleavage Ce - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12990,20 +12996,20 @@ - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 280 min post first-cleavage - worm_development - WBls:0000391 - 280 min post first-cleavage Ce + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 280 min post first-cleavage + worm_development + WBls:0000391 + 280 min post first-cleavage Ce - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13024,20 +13030,20 @@ - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 281 min post first-cleavage - worm_development - WBls:0000392 - 281 min post first-cleavage Ce + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 281 min post first-cleavage + worm_development + WBls:0000392 + 281 min post first-cleavage Ce - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13058,20 +13064,20 @@ - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 282 min post first-cleavage - worm_development - WBls:0000393 - 282 min post first-cleavage Ce + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 282 min post first-cleavage + worm_development + WBls:0000393 + 282 min post first-cleavage Ce - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13092,20 +13098,20 @@ - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 283 min post first-cleavage - worm_development - WBls:0000394 - 283 min post first-cleavage Ce + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 283 min post first-cleavage + worm_development + WBls:0000394 + 283 min post first-cleavage Ce - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13126,20 +13132,20 @@ - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 284 min post first-cleavage - worm_development - WBls:0000395 - 284 min post first-cleavage Ce + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 284 min post first-cleavage + worm_development + WBls:0000395 + 284 min post first-cleavage Ce - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13160,20 +13166,20 @@ - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 285 min post first-cleavage - worm_development - WBls:0000396 - 285 min post first-cleavage Ce + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 285 min post first-cleavage + worm_development + WBls:0000396 + 285 min post first-cleavage Ce - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13194,20 +13200,20 @@ - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 286 min post first-cleavage - worm_development - WBls:0000397 - 286 min post first-cleavage Ce + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 286 min post first-cleavage + worm_development + WBls:0000397 + 286 min post first-cleavage Ce - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13228,20 +13234,20 @@ - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 287 min post first-cleavage - worm_development - WBls:0000398 - 287 min post first-cleavage Ce + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 287 min post first-cleavage + worm_development + WBls:0000398 + 287 min post first-cleavage Ce - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13262,20 +13268,20 @@ - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 288 min post first-cleavage - worm_development - WBls:0000399 - 288 min post first-cleavage Ce + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 288 min post first-cleavage + worm_development + WBls:0000399 + 288 min post first-cleavage Ce - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13296,20 +13302,20 @@ - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 289 min post first-cleavage - worm_development - WBls:0000400 - 289 min post first-cleavage Ce + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 289 min post first-cleavage + worm_development + WBls:0000400 + 289 min post first-cleavage Ce - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13330,20 +13336,20 @@ - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 290 min post first-cleavage - worm_development - WBls:0000401 - 290 min post first-cleavage Ce + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 290 min post first-cleavage + worm_development + WBls:0000401 + 290 min post first-cleavage Ce - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13364,20 +13370,20 @@ - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 291 min post first-cleavage - worm_development - WBls:0000402 - 291 min post first-cleavage Ce + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 291 min post first-cleavage + worm_development + WBls:0000402 + 291 min post first-cleavage Ce - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13398,20 +13404,20 @@ - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 292 min post first-cleavage - worm_development - WBls:0000403 - 292 min post first-cleavage Ce + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 292 min post first-cleavage + worm_development + WBls:0000403 + 292 min post first-cleavage Ce - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13432,20 +13438,20 @@ - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 293 min post first-cleavage - worm_development - WBls:0000404 - 293 min post first-cleavage Ce + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 293 min post first-cleavage + worm_development + WBls:0000404 + 293 min post first-cleavage Ce - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13466,20 +13472,20 @@ - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 294 min post first-cleavage - worm_development - WBls:0000405 - 294 min post first-cleavage Ce + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 294 min post first-cleavage + worm_development + WBls:0000405 + 294 min post first-cleavage Ce - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13500,20 +13506,20 @@ - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 295 min post first-cleavage - worm_development - WBls:0000406 - 295 min post first-cleavage Ce + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 295 min post first-cleavage + worm_development + WBls:0000406 + 295 min post first-cleavage Ce - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13534,20 +13540,20 @@ - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 296 min post first-cleavage - worm_development - WBls:0000407 - 296 min post first-cleavage Ce + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 296 min post first-cleavage + worm_development + WBls:0000407 + 296 min post first-cleavage Ce - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13568,20 +13574,20 @@ - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 297 min post first-cleavage - worm_development - WBls:0000408 - 297 min post first-cleavage Ce + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 297 min post first-cleavage + worm_development + WBls:0000408 + 297 min post first-cleavage Ce - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13602,20 +13608,20 @@ - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 298 min post first-cleavage - worm_development - WBls:0000409 - 298 min post first-cleavage Ce + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 298 min post first-cleavage + worm_development + WBls:0000409 + 298 min post first-cleavage Ce - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13636,20 +13642,20 @@ - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 299 min post first-cleavage - worm_development - WBls:0000410 - 299 min post first-cleavage Ce + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 299 min post first-cleavage + worm_development + WBls:0000410 + 299 min post first-cleavage Ce - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13670,20 +13676,20 @@ - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 300 min post first-cleavage - worm_development - WBls:0000411 - 300 min post first-cleavage Ce + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 300 min post first-cleavage + worm_development + WBls:0000411 + 300 min post first-cleavage Ce - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13704,20 +13710,20 @@ - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 301 min post first-cleavage - worm_development - WBls:0000412 - 301 min post first-cleavage Ce + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 301 min post first-cleavage + worm_development + WBls:0000412 + 301 min post first-cleavage Ce - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13738,20 +13744,20 @@ - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 302 min post first-cleavage - worm_development - WBls:0000413 - 302 min post first-cleavage Ce + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 302 min post first-cleavage + worm_development + WBls:0000413 + 302 min post first-cleavage Ce - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13772,20 +13778,20 @@ - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 303 min post first-cleavage - worm_development - WBls:0000414 - 303 min post first-cleavage Ce + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 303 min post first-cleavage + worm_development + WBls:0000414 + 303 min post first-cleavage Ce - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13806,20 +13812,20 @@ - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 304 min post first-cleavage - worm_development - WBls:0000415 - 304 min post first-cleavage Ce + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 304 min post first-cleavage + worm_development + WBls:0000415 + 304 min post first-cleavage Ce - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13840,20 +13846,20 @@ - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 305 min post first-cleavage - worm_development - WBls:0000416 - 305 min post first-cleavage Ce + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 305 min post first-cleavage + worm_development + WBls:0000416 + 305 min post first-cleavage Ce - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13874,20 +13880,20 @@ - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 306 min post first-cleavage - worm_development - WBls:0000417 - 306 min post first-cleavage Ce + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 306 min post first-cleavage + worm_development + WBls:0000417 + 306 min post first-cleavage Ce - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13908,20 +13914,20 @@ - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 307 min post first-cleavage - worm_development - WBls:0000418 - 307 min post first-cleavage Ce + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 307 min post first-cleavage + worm_development + WBls:0000418 + 307 min post first-cleavage Ce - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13942,20 +13948,20 @@ - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 308 min post first-cleavage - worm_development - WBls:0000419 - 308 min post first-cleavage Ce + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 308 min post first-cleavage + worm_development + WBls:0000419 + 308 min post first-cleavage Ce - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13976,20 +13982,20 @@ - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 309 min post first-cleavage - worm_development - WBls:0000420 - 309 min post first-cleavage Ce + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 309 min post first-cleavage + worm_development + WBls:0000420 + 309 min post first-cleavage Ce - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14010,20 +14016,20 @@ - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 310 min post first-cleavage - worm_development - WBls:0000421 - 310 min post first-cleavage Ce + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 310 min post first-cleavage + worm_development + WBls:0000421 + 310 min post first-cleavage Ce - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14044,20 +14050,20 @@ - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 311 min post first-cleavage - worm_development - WBls:0000422 - 311 min post first-cleavage Ce + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 311 min post first-cleavage + worm_development + WBls:0000422 + 311 min post first-cleavage Ce - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14078,20 +14084,20 @@ - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 312 min post first-cleavage - worm_development - WBls:0000423 - 312 min post first-cleavage Ce + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 312 min post first-cleavage + worm_development + WBls:0000423 + 312 min post first-cleavage Ce - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14112,20 +14118,20 @@ - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 313 min post first-cleavage - worm_development - WBls:0000424 - 313 min post first-cleavage Ce + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 313 min post first-cleavage + worm_development + WBls:0000424 + 313 min post first-cleavage Ce - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14146,20 +14152,20 @@ - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 314 min post first-cleavage - worm_development - WBls:0000425 - 314 min post first-cleavage Ce + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 314 min post first-cleavage + worm_development + WBls:0000425 + 314 min post first-cleavage Ce - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14180,20 +14186,20 @@ - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 315 min post first-cleavage - worm_development - WBls:0000426 - 315 min post first-cleavage Ce + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 315 min post first-cleavage + worm_development + WBls:0000426 + 315 min post first-cleavage Ce - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14214,20 +14220,20 @@ - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 316 min post first-cleavage - worm_development - WBls:0000427 - 316 min post first-cleavage Ce + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 316 min post first-cleavage + worm_development + WBls:0000427 + 316 min post first-cleavage Ce - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14248,20 +14254,20 @@ - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 317 min post first-cleavage - worm_development - WBls:0000428 - 317 min post first-cleavage Ce + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 317 min post first-cleavage + worm_development + WBls:0000428 + 317 min post first-cleavage Ce - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14282,20 +14288,20 @@ - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 318 min post first-cleavage - worm_development - WBls:0000429 - 318 min post first-cleavage Ce + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 318 min post first-cleavage + worm_development + WBls:0000429 + 318 min post first-cleavage Ce - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14316,20 +14322,20 @@ - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 319 min post first-cleavage - worm_development - WBls:0000430 - 319 min post first-cleavage Ce + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 319 min post first-cleavage + worm_development + WBls:0000430 + 319 min post first-cleavage Ce - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14350,20 +14356,20 @@ - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 320 min post first-cleavage - worm_development - WBls:0000431 - 320 min post first-cleavage Ce + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 320 min post first-cleavage + worm_development + WBls:0000431 + 320 min post first-cleavage Ce - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14384,20 +14390,20 @@ - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 321 min post first-cleavage - worm_development - WBls:0000432 - 321 min post first-cleavage Ce + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 321 min post first-cleavage + worm_development + WBls:0000432 + 321 min post first-cleavage Ce - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14418,20 +14424,20 @@ - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 322 min post first-cleavage - worm_development - WBls:0000433 - 322 min post first-cleavage Ce + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 322 min post first-cleavage + worm_development + WBls:0000433 + 322 min post first-cleavage Ce - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14452,20 +14458,20 @@ - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 323 min post first-cleavage - worm_development - WBls:0000434 - 323 min post first-cleavage Ce + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 323 min post first-cleavage + worm_development + WBls:0000434 + 323 min post first-cleavage Ce - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14486,20 +14492,20 @@ - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 324 min post first-cleavage - worm_development - WBls:0000435 - 324 min post first-cleavage Ce + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 324 min post first-cleavage + worm_development + WBls:0000435 + 324 min post first-cleavage Ce - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14520,20 +14526,20 @@ - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 325 min post first-cleavage - worm_development - WBls:0000436 - 325 min post first-cleavage Ce + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 325 min post first-cleavage + worm_development + WBls:0000436 + 325 min post first-cleavage Ce - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14554,20 +14560,20 @@ - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 326 min post first-cleavage - worm_development - WBls:0000437 - 326 min post first-cleavage Ce + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 326 min post first-cleavage + worm_development + WBls:0000437 + 326 min post first-cleavage Ce - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14588,20 +14594,20 @@ - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 327 min post first-cleavage - worm_development - WBls:0000438 - 327 min post first-cleavage Ce + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 327 min post first-cleavage + worm_development + WBls:0000438 + 327 min post first-cleavage Ce - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14622,20 +14628,20 @@ - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 328 min post first-cleavage - worm_development - WBls:0000439 - 328 min post first-cleavage Ce + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 328 min post first-cleavage + worm_development + WBls:0000439 + 328 min post first-cleavage Ce - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14656,20 +14662,20 @@ - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 329 min post first-cleavage - worm_development - WBls:0000440 - 329 min post first-cleavage Ce + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 329 min post first-cleavage + worm_development + WBls:0000440 + 329 min post first-cleavage Ce - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14690,20 +14696,20 @@ - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 330 min post first-cleavage - worm_development - WBls:0000441 - 330 min post first-cleavage Ce + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 330 min post first-cleavage + worm_development + WBls:0000441 + 330 min post first-cleavage Ce - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14724,20 +14730,20 @@ - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 331 min post first-cleavage - worm_development - WBls:0000442 - 331 min post first-cleavage Ce + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 331 min post first-cleavage + worm_development + WBls:0000442 + 331 min post first-cleavage Ce - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14758,20 +14764,20 @@ - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 332 min post first-cleavage - worm_development - WBls:0000443 - 332 min post first-cleavage Ce + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 332 min post first-cleavage + worm_development + WBls:0000443 + 332 min post first-cleavage Ce - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14792,20 +14798,20 @@ - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 333 min post first-cleavage - worm_development - WBls:0000444 - 333 min post first-cleavage Ce + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 333 min post first-cleavage + worm_development + WBls:0000444 + 333 min post first-cleavage Ce - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14826,20 +14832,20 @@ - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 334 min post first-cleavage - worm_development - WBls:0000445 - 334 min post first-cleavage Ce + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 334 min post first-cleavage + worm_development + WBls:0000445 + 334 min post first-cleavage Ce - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14860,20 +14866,20 @@ - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 335 min post first-cleavage - worm_development - WBls:0000446 - 335 min post first-cleavage Ce + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 335 min post first-cleavage + worm_development + WBls:0000446 + 335 min post first-cleavage Ce - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14894,20 +14900,20 @@ - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 336 min post first-cleavage - worm_development - WBls:0000447 - 336 min post first-cleavage Ce + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 336 min post first-cleavage + worm_development + WBls:0000447 + 336 min post first-cleavage Ce - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14928,20 +14934,20 @@ - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 337 min post first-cleavage - worm_development - WBls:0000448 - 337 min post first-cleavage Ce + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 337 min post first-cleavage + worm_development + WBls:0000448 + 337 min post first-cleavage Ce - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14962,20 +14968,20 @@ - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 338 min post first-cleavage - worm_development - WBls:0000449 - 338 min post first-cleavage Ce + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 338 min post first-cleavage + worm_development + WBls:0000449 + 338 min post first-cleavage Ce - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14996,20 +15002,20 @@ - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 339 min post first-cleavage - worm_development - WBls:0000450 - 339 min post first-cleavage Ce + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 339 min post first-cleavage + worm_development + WBls:0000450 + 339 min post first-cleavage Ce - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15030,20 +15036,20 @@ - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 340 min post first-cleavage - worm_development - WBls:0000451 - 340 min post first-cleavage Ce + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 340 min post first-cleavage + worm_development + WBls:0000451 + 340 min post first-cleavage Ce - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15064,20 +15070,20 @@ - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 341 min post first-cleavage - worm_development - WBls:0000452 - 341 min post first-cleavage Ce + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 341 min post first-cleavage + worm_development + WBls:0000452 + 341 min post first-cleavage Ce - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15098,20 +15104,20 @@ - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 342 min post first-cleavage - worm_development - WBls:0000453 - 342 min post first-cleavage Ce + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 342 min post first-cleavage + worm_development + WBls:0000453 + 342 min post first-cleavage Ce - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15132,20 +15138,20 @@ - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 343 min post first-cleavage - worm_development - WBls:0000454 - 343 min post first-cleavage Ce + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 343 min post first-cleavage + worm_development + WBls:0000454 + 343 min post first-cleavage Ce - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15166,20 +15172,20 @@ - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 344 min post first-cleavage - worm_development - WBls:0000455 - 344 min post first-cleavage Ce + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 344 min post first-cleavage + worm_development + WBls:0000455 + 344 min post first-cleavage Ce - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15200,20 +15206,20 @@ - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 345 min post first-cleavage - worm_development - WBls:0000456 - 345 min post first-cleavage Ce + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 345 min post first-cleavage + worm_development + WBls:0000456 + 345 min post first-cleavage Ce - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15234,20 +15240,20 @@ - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 346 min post first-cleavage - worm_development - WBls:0000457 - 346 min post first-cleavage Ce + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 346 min post first-cleavage + worm_development + WBls:0000457 + 346 min post first-cleavage Ce - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15268,20 +15274,20 @@ - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 347 min post first-cleavage - worm_development - WBls:0000458 - 347 min post first-cleavage Ce + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 347 min post first-cleavage + worm_development + WBls:0000458 + 347 min post first-cleavage Ce - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15302,20 +15308,20 @@ - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 348 min post first-cleavage - worm_development - WBls:0000459 - 348 min post first-cleavage Ce + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 348 min post first-cleavage + worm_development + WBls:0000459 + 348 min post first-cleavage Ce - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15336,20 +15342,20 @@ - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 349 min post first-cleavage - worm_development - WBls:0000460 - 349 min post first-cleavage Ce + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 349 min post first-cleavage + worm_development + WBls:0000460 + 349 min post first-cleavage Ce - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15370,20 +15376,20 @@ - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 350 min post first-cleavage - worm_development - WBls:0000461 - 350 min post first-cleavage Ce + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 350 min post first-cleavage + worm_development + WBls:0000461 + 350 min post first-cleavage Ce - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15404,20 +15410,20 @@ - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 351 min post first-cleavage - worm_development - WBls:0000462 - 351 min post first-cleavage Ce + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 351 min post first-cleavage + worm_development + WBls:0000462 + 351 min post first-cleavage Ce - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15438,20 +15444,20 @@ - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 352 min post first-cleavage - worm_development - WBls:0000463 - 352 min post first-cleavage Ce + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 352 min post first-cleavage + worm_development + WBls:0000463 + 352 min post first-cleavage Ce - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15472,20 +15478,20 @@ - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 353 min post first-cleavage - worm_development - WBls:0000464 - 353 min post first-cleavage Ce + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 353 min post first-cleavage + worm_development + WBls:0000464 + 353 min post first-cleavage Ce - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15506,20 +15512,20 @@ - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 354 min post first-cleavage - worm_development - WBls:0000465 - 354 min post first-cleavage Ce + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 354 min post first-cleavage + worm_development + WBls:0000465 + 354 min post first-cleavage Ce - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15540,20 +15546,20 @@ - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 355 min post first-cleavage - worm_development - WBls:0000466 - 355 min post first-cleavage Ce + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 355 min post first-cleavage + worm_development + WBls:0000466 + 355 min post first-cleavage Ce - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15574,20 +15580,20 @@ - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 356 min post first-cleavage - worm_development - WBls:0000467 - 356 min post first-cleavage Ce + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 356 min post first-cleavage + worm_development + WBls:0000467 + 356 min post first-cleavage Ce - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15608,20 +15614,20 @@ - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 357 min post first-cleavage - worm_development - WBls:0000468 - 357 min post first-cleavage Ce + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 357 min post first-cleavage + worm_development + WBls:0000468 + 357 min post first-cleavage Ce - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15642,20 +15648,20 @@ - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 358 min post first-cleavage - worm_development - WBls:0000469 - 358 min post first-cleavage Ce + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 358 min post first-cleavage + worm_development + WBls:0000469 + 358 min post first-cleavage Ce - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15676,20 +15682,20 @@ - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 359 min post first-cleavage - worm_development - WBls:0000470 - 359 min post first-cleavage Ce + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 359 min post first-cleavage + worm_development + WBls:0000470 + 359 min post first-cleavage Ce - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15710,20 +15716,20 @@ - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 360 min post first-cleavage - worm_development - WBls:0000471 - 360 min post first-cleavage Ce + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 360 min post first-cleavage + worm_development + WBls:0000471 + 360 min post first-cleavage Ce - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15744,20 +15750,20 @@ - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 361 min post first-cleavage - worm_development - WBls:0000472 - 361 min post first-cleavage Ce + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 361 min post first-cleavage + worm_development + WBls:0000472 + 361 min post first-cleavage Ce - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15778,20 +15784,20 @@ - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 362 min post first-cleavage - worm_development - WBls:0000473 - 362 min post first-cleavage Ce + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 362 min post first-cleavage + worm_development + WBls:0000473 + 362 min post first-cleavage Ce - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15812,20 +15818,20 @@ - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 363 min post first-cleavage - worm_development - WBls:0000474 - 363 min post first-cleavage Ce + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 363 min post first-cleavage + worm_development + WBls:0000474 + 363 min post first-cleavage Ce - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15846,20 +15852,20 @@ - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 364 min post first-cleavage - worm_development - WBls:0000475 - 364 min post first-cleavage Ce + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 364 min post first-cleavage + worm_development + WBls:0000475 + 364 min post first-cleavage Ce - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15880,20 +15886,20 @@ - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 365 min post first-cleavage - worm_development - WBls:0000476 - 365 min post first-cleavage Ce + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 365 min post first-cleavage + worm_development + WBls:0000476 + 365 min post first-cleavage Ce - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15914,20 +15920,20 @@ - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 366 min post first-cleavage - worm_development - WBls:0000477 - 366 min post first-cleavage Ce + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 366 min post first-cleavage + worm_development + WBls:0000477 + 366 min post first-cleavage Ce - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15948,20 +15954,20 @@ - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 367 min post first-cleavage - worm_development - WBls:0000478 - 367 min post first-cleavage Ce + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 367 min post first-cleavage + worm_development + WBls:0000478 + 367 min post first-cleavage Ce - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15982,20 +15988,20 @@ - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 368 min post first-cleavage - worm_development - WBls:0000479 - 368 min post first-cleavage Ce + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 368 min post first-cleavage + worm_development + WBls:0000479 + 368 min post first-cleavage Ce - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16016,20 +16022,20 @@ - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 369 min post first-cleavage - worm_development - WBls:0000480 - 369 min post first-cleavage Ce + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 369 min post first-cleavage + worm_development + WBls:0000480 + 369 min post first-cleavage Ce - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16050,20 +16056,20 @@ - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 370 min post first-cleavage - worm_development - WBls:0000481 - 370 min post first-cleavage Ce + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 370 min post first-cleavage + worm_development + WBls:0000481 + 370 min post first-cleavage Ce - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16084,20 +16090,20 @@ - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 371 min post first-cleavage - worm_development - WBls:0000482 - 371 min post first-cleavage Ce + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 371 min post first-cleavage + worm_development + WBls:0000482 + 371 min post first-cleavage Ce - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16118,20 +16124,20 @@ - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 372 min post first-cleavage - worm_development - WBls:0000483 - 372 min post first-cleavage Ce + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 372 min post first-cleavage + worm_development + WBls:0000483 + 372 min post first-cleavage Ce - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16152,20 +16158,20 @@ - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 373 min post first-cleavage - worm_development - WBls:0000484 - 373 min post first-cleavage Ce + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 373 min post first-cleavage + worm_development + WBls:0000484 + 373 min post first-cleavage Ce - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16186,20 +16192,20 @@ - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 374 min post first-cleavage - worm_development - WBls:0000485 - 374 min post first-cleavage Ce + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 374 min post first-cleavage + worm_development + WBls:0000485 + 374 min post first-cleavage Ce - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16220,20 +16226,20 @@ - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 375 min post first-cleavage - worm_development - WBls:0000486 - 375 min post first-cleavage Ce + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 375 min post first-cleavage + worm_development + WBls:0000486 + 375 min post first-cleavage Ce - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16254,20 +16260,20 @@ - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 376 min post first-cleavage - worm_development - WBls:0000487 - 376 min post first-cleavage Ce + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 376 min post first-cleavage + worm_development + WBls:0000487 + 376 min post first-cleavage Ce - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16288,20 +16294,20 @@ - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 377 min post first-cleavage - worm_development - WBls:0000488 - 377 min post first-cleavage Ce + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 377 min post first-cleavage + worm_development + WBls:0000488 + 377 min post first-cleavage Ce - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16322,20 +16328,20 @@ - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 378 min post first-cleavage - worm_development - WBls:0000489 - 378 min post first-cleavage Ce + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 378 min post first-cleavage + worm_development + WBls:0000489 + 378 min post first-cleavage Ce - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16356,20 +16362,20 @@ - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 379 min post first-cleavage - worm_development - WBls:0000490 - 379 min post first-cleavage Ce + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 379 min post first-cleavage + worm_development + WBls:0000490 + 379 min post first-cleavage Ce - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16390,20 +16396,20 @@ - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 380 min post first-cleavage - worm_development - WBls:0000491 - 380 min post first-cleavage Ce + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 380 min post first-cleavage + worm_development + WBls:0000491 + 380 min post first-cleavage Ce - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16424,20 +16430,20 @@ - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 381 min post first-cleavage - worm_development - WBls:0000492 - 381 min post first-cleavage Ce + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 381 min post first-cleavage + worm_development + WBls:0000492 + 381 min post first-cleavage Ce - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16458,20 +16464,20 @@ - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 382 min post first-cleavage - worm_development - WBls:0000493 - 382 min post first-cleavage Ce + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 382 min post first-cleavage + worm_development + WBls:0000493 + 382 min post first-cleavage Ce - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16492,20 +16498,20 @@ - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 383 min post first-cleavage - worm_development - WBls:0000494 - 383 min post first-cleavage Ce + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 383 min post first-cleavage + worm_development + WBls:0000494 + 383 min post first-cleavage Ce - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16526,20 +16532,20 @@ - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 384 min post first-cleavage - worm_development - WBls:0000495 - 384 min post first-cleavage Ce + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 384 min post first-cleavage + worm_development + WBls:0000495 + 384 min post first-cleavage Ce - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16560,20 +16566,20 @@ - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 385 min post first-cleavage - worm_development - WBls:0000496 - 385 min post first-cleavage Ce + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 385 min post first-cleavage + worm_development + WBls:0000496 + 385 min post first-cleavage Ce - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16594,20 +16600,20 @@ - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 386 min post first-cleavage - worm_development - WBls:0000497 - 386 min post first-cleavage Ce + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 386 min post first-cleavage + worm_development + WBls:0000497 + 386 min post first-cleavage Ce - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16628,20 +16634,20 @@ - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 387 min post first-cleavage - worm_development - WBls:0000498 - 387 min post first-cleavage Ce + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 387 min post first-cleavage + worm_development + WBls:0000498 + 387 min post first-cleavage Ce - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16662,20 +16668,20 @@ - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 388 min post first-cleavage - worm_development - WBls:0000499 - 388 min post first-cleavage Ce + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 388 min post first-cleavage + worm_development + WBls:0000499 + 388 min post first-cleavage Ce - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16696,20 +16702,20 @@ - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 389 min post first-cleavage - worm_development - WBls:0000500 - 389 min post first-cleavage Ce + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 389 min post first-cleavage + worm_development + WBls:0000500 + 389 min post first-cleavage Ce - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16730,20 +16736,20 @@ - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 390 min post first-cleavage - worm_development - WBls:0000501 - 390 min post first-cleavage Ce + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 390 min post first-cleavage + worm_development + WBls:0000501 + 390 min post first-cleavage Ce - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16764,20 +16770,20 @@ - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 391 min post first-cleavage - worm_development - WBls:0000502 - 391 min post first-cleavage Ce + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 391 min post first-cleavage + worm_development + WBls:0000502 + 391 min post first-cleavage Ce - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16798,20 +16804,20 @@ - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 392 min post first-cleavage - worm_development - WBls:0000503 - 392 min post first-cleavage Ce + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 392 min post first-cleavage + worm_development + WBls:0000503 + 392 min post first-cleavage Ce - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16832,20 +16838,20 @@ - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 393 min post first-cleavage - worm_development - WBls:0000504 - 393 min post first-cleavage Ce + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 393 min post first-cleavage + worm_development + WBls:0000504 + 393 min post first-cleavage Ce - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16866,20 +16872,20 @@ - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 394 min post first-cleavage - worm_development - WBls:0000505 - 394 min post first-cleavage Ce + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 394 min post first-cleavage + worm_development + WBls:0000505 + 394 min post first-cleavage Ce - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16900,20 +16906,20 @@ - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 395 min post first-cleavage - worm_development - WBls:0000506 - 395 min post first-cleavage Ce + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 395 min post first-cleavage + worm_development + WBls:0000506 + 395 min post first-cleavage Ce - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16934,20 +16940,20 @@ - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 396 min post first-cleavage - worm_development - WBls:0000507 - 396 min post first-cleavage Ce + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 396 min post first-cleavage + worm_development + WBls:0000507 + 396 min post first-cleavage Ce - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16968,20 +16974,20 @@ - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 397 min post first-cleavage - worm_development - WBls:0000508 - 397 min post first-cleavage Ce + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 397 min post first-cleavage + worm_development + WBls:0000508 + 397 min post first-cleavage Ce - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17002,20 +17008,20 @@ - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 398 min post first-cleavage - worm_development - WBls:0000509 - 398 min post first-cleavage Ce + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 398 min post first-cleavage + worm_development + WBls:0000509 + 398 min post first-cleavage Ce - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17036,20 +17042,20 @@ - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 399 min post first-cleavage - worm_development - WBls:0000510 - 399 min post first-cleavage Ce + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 399 min post first-cleavage + worm_development + WBls:0000510 + 399 min post first-cleavage Ce - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17070,20 +17076,20 @@ - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 400 min post first-cleavage - worm_development - WBls:0000511 - 400 min post first-cleavage Ce + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 400 min post first-cleavage + worm_development + WBls:0000511 + 400 min post first-cleavage Ce - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17104,20 +17110,20 @@ - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 401 min post first-cleavage - worm_development - WBls:0000512 - 401 min post first-cleavage Ce + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 401 min post first-cleavage + worm_development + WBls:0000512 + 401 min post first-cleavage Ce - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17138,20 +17144,20 @@ - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 402 min post first-cleavage - worm_development - WBls:0000513 - 402 min post first-cleavage Ce + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 402 min post first-cleavage + worm_development + WBls:0000513 + 402 min post first-cleavage Ce - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17172,20 +17178,20 @@ - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 403 min post first-cleavage - worm_development - WBls:0000514 - 403 min post first-cleavage Ce + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 403 min post first-cleavage + worm_development + WBls:0000514 + 403 min post first-cleavage Ce - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17206,20 +17212,20 @@ - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 404 min post first-cleavage - worm_development - WBls:0000515 - 404 min post first-cleavage Ce + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 404 min post first-cleavage + worm_development + WBls:0000515 + 404 min post first-cleavage Ce - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17240,20 +17246,20 @@ - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 405 min post first-cleavage - worm_development - WBls:0000516 - 405 min post first-cleavage Ce + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 405 min post first-cleavage + worm_development + WBls:0000516 + 405 min post first-cleavage Ce - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17274,20 +17280,20 @@ - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 406 min post first-cleavage - worm_development - WBls:0000517 - 406 min post first-cleavage Ce + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 406 min post first-cleavage + worm_development + WBls:0000517 + 406 min post first-cleavage Ce - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17308,20 +17314,20 @@ - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 407 min post first-cleavage - worm_development - WBls:0000518 - 407 min post first-cleavage Ce + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 407 min post first-cleavage + worm_development + WBls:0000518 + 407 min post first-cleavage Ce - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17342,20 +17348,20 @@ - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 408 min post first-cleavage - worm_development - WBls:0000519 - 408 min post first-cleavage Ce + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 408 min post first-cleavage + worm_development + WBls:0000519 + 408 min post first-cleavage Ce - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17376,20 +17382,20 @@ - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 409 min post first-cleavage - worm_development - WBls:0000520 - 409 min post first-cleavage Ce + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 409 min post first-cleavage + worm_development + WBls:0000520 + 409 min post first-cleavage Ce - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17410,20 +17416,20 @@ - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 410 min post first-cleavage - worm_development - WBls:0000521 - 410 min post first-cleavage Ce + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 410 min post first-cleavage + worm_development + WBls:0000521 + 410 min post first-cleavage Ce - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17444,20 +17450,20 @@ - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 411 min post first-cleavage - worm_development - WBls:0000522 - 411 min post first-cleavage Ce + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 411 min post first-cleavage + worm_development + WBls:0000522 + 411 min post first-cleavage Ce - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17478,20 +17484,20 @@ - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 412 min post first-cleavage - worm_development - WBls:0000523 - 412 min post first-cleavage Ce + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 412 min post first-cleavage + worm_development + WBls:0000523 + 412 min post first-cleavage Ce - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17512,20 +17518,20 @@ - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 413 min post first-cleavage - worm_development - WBls:0000524 - 413 min post first-cleavage Ce + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 413 min post first-cleavage + worm_development + WBls:0000524 + 413 min post first-cleavage Ce - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17546,20 +17552,20 @@ - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 414 min post first-cleavage - worm_development - WBls:0000525 - 414 min post first-cleavage Ce + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 414 min post first-cleavage + worm_development + WBls:0000525 + 414 min post first-cleavage Ce - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17580,20 +17586,20 @@ - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 415 min post first-cleavage - worm_development - WBls:0000526 - 415 min post first-cleavage Ce + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 415 min post first-cleavage + worm_development + WBls:0000526 + 415 min post first-cleavage Ce - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17614,20 +17620,20 @@ - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 416 min post first-cleavage - worm_development - WBls:0000527 - 416 min post first-cleavage Ce + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 416 min post first-cleavage + worm_development + WBls:0000527 + 416 min post first-cleavage Ce - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17648,20 +17654,20 @@ - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 417 min post first-cleavage - worm_development - WBls:0000528 - 417 min post first-cleavage Ce + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 417 min post first-cleavage + worm_development + WBls:0000528 + 417 min post first-cleavage Ce - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17682,20 +17688,20 @@ - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 418 min post first-cleavage - worm_development - WBls:0000529 - 418 min post first-cleavage Ce + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 418 min post first-cleavage + worm_development + WBls:0000529 + 418 min post first-cleavage Ce - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17716,20 +17722,20 @@ - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 419 min post first-cleavage - worm_development - WBls:0000530 - 419 min post first-cleavage Ce + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 419 min post first-cleavage + worm_development + WBls:0000530 + 419 min post first-cleavage Ce - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17750,20 +17756,20 @@ - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 420 min post first-cleavage - worm_development - WBls:0000531 - 420 min post first-cleavage Ce + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 420 min post first-cleavage + worm_development + WBls:0000531 + 420 min post first-cleavage Ce - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17784,20 +17790,20 @@ - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 421 min post first-cleavage - worm_development - WBls:0000532 - 421 min post first-cleavage Ce + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 421 min post first-cleavage + worm_development + WBls:0000532 + 421 min post first-cleavage Ce - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17818,20 +17824,20 @@ - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 422 min post first-cleavage - worm_development - WBls:0000533 - 422 min post first-cleavage Ce + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 422 min post first-cleavage + worm_development + WBls:0000533 + 422 min post first-cleavage Ce - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17852,20 +17858,20 @@ - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 423 min post first-cleavage - worm_development - WBls:0000534 - 423 min post first-cleavage Ce + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 423 min post first-cleavage + worm_development + WBls:0000534 + 423 min post first-cleavage Ce - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17886,20 +17892,20 @@ - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 424 min post first-cleavage - worm_development - WBls:0000535 - 424 min post first-cleavage Ce + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 424 min post first-cleavage + worm_development + WBls:0000535 + 424 min post first-cleavage Ce - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17920,20 +17926,20 @@ - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 425 min post first-cleavage - worm_development - WBls:0000536 - 425 min post first-cleavage Ce + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 425 min post first-cleavage + worm_development + WBls:0000536 + 425 min post first-cleavage Ce - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17954,20 +17960,20 @@ - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 426 min post first-cleavage - worm_development - WBls:0000537 - 426 min post first-cleavage Ce + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 426 min post first-cleavage + worm_development + WBls:0000537 + 426 min post first-cleavage Ce - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17988,20 +17994,20 @@ - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 427 min post first-cleavage - worm_development - WBls:0000538 - 427 min post first-cleavage Ce + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 427 min post first-cleavage + worm_development + WBls:0000538 + 427 min post first-cleavage Ce - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18022,20 +18028,20 @@ - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 428 min post first-cleavage - worm_development - WBls:0000539 - 428 min post first-cleavage Ce + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 428 min post first-cleavage + worm_development + WBls:0000539 + 428 min post first-cleavage Ce - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18056,20 +18062,20 @@ - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 429 min post first-cleavage - worm_development - WBls:0000540 - 429 min post first-cleavage Ce + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 429 min post first-cleavage + worm_development + WBls:0000540 + 429 min post first-cleavage Ce - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18090,20 +18096,20 @@ - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 430 min post first-cleavage - worm_development - WBls:0000541 - 430 min post first-cleavage Ce + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 430 min post first-cleavage + worm_development + WBls:0000541 + 430 min post first-cleavage Ce - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18124,20 +18130,20 @@ - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 431 min post first-cleavage - worm_development - WBls:0000542 - 431 min post first-cleavage Ce + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 431 min post first-cleavage + worm_development + WBls:0000542 + 431 min post first-cleavage Ce - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18158,20 +18164,20 @@ - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 432 min post first-cleavage - worm_development - WBls:0000543 - 432 min post first-cleavage Ce + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 432 min post first-cleavage + worm_development + WBls:0000543 + 432 min post first-cleavage Ce - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18192,20 +18198,20 @@ - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 433 min post first-cleavage - worm_development - WBls:0000544 - 433 min post first-cleavage Ce + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 433 min post first-cleavage + worm_development + WBls:0000544 + 433 min post first-cleavage Ce - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18226,20 +18232,20 @@ - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 434 min post first-cleavage - worm_development - WBls:0000545 - 434 min post first-cleavage Ce + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 434 min post first-cleavage + worm_development + WBls:0000545 + 434 min post first-cleavage Ce - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18260,20 +18266,20 @@ - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 435 min post first-cleavage - worm_development - WBls:0000546 - 435 min post first-cleavage Ce + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 435 min post first-cleavage + worm_development + WBls:0000546 + 435 min post first-cleavage Ce - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18294,20 +18300,20 @@ - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 436 min post first-cleavage - worm_development - WBls:0000547 - 436 min post first-cleavage Ce + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 436 min post first-cleavage + worm_development + WBls:0000547 + 436 min post first-cleavage Ce - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18328,20 +18334,20 @@ - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 437 min post first-cleavage - worm_development - WBls:0000548 - 437 min post first-cleavage Ce + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 437 min post first-cleavage + worm_development + WBls:0000548 + 437 min post first-cleavage Ce - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18362,20 +18368,20 @@ - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 438 min post first-cleavage - worm_development - WBls:0000549 - 438 min post first-cleavage Ce + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 438 min post first-cleavage + worm_development + WBls:0000549 + 438 min post first-cleavage Ce - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18396,20 +18402,20 @@ - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 439 min post first-cleavage - worm_development - WBls:0000550 - 439 min post first-cleavage Ce + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 439 min post first-cleavage + worm_development + WBls:0000550 + 439 min post first-cleavage Ce - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18430,20 +18436,20 @@ - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 440 min post first-cleavage - worm_development - WBls:0000551 - 440 min post first-cleavage Ce + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 440 min post first-cleavage + worm_development + WBls:0000551 + 440 min post first-cleavage Ce - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18464,20 +18470,20 @@ - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 441 min post first-cleavage - worm_development - WBls:0000552 - 441 min post first-cleavage Ce + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 441 min post first-cleavage + worm_development + WBls:0000552 + 441 min post first-cleavage Ce - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18498,20 +18504,20 @@ - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 442 min post first-cleavage - worm_development - WBls:0000553 - 442 min post first-cleavage Ce + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 442 min post first-cleavage + worm_development + WBls:0000553 + 442 min post first-cleavage Ce - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18532,20 +18538,20 @@ - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 443 min post first-cleavage - worm_development - WBls:0000554 - 443 min post first-cleavage Ce + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 443 min post first-cleavage + worm_development + WBls:0000554 + 443 min post first-cleavage Ce - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18566,20 +18572,20 @@ - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 444 min post first-cleavage - worm_development - WBls:0000555 - 444 min post first-cleavage Ce + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 444 min post first-cleavage + worm_development + WBls:0000555 + 444 min post first-cleavage Ce - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18600,20 +18606,20 @@ - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 445 min post first-cleavage - worm_development - WBls:0000556 - 445 min post first-cleavage Ce + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 445 min post first-cleavage + worm_development + WBls:0000556 + 445 min post first-cleavage Ce - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18634,20 +18640,20 @@ - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 446 min post first-cleavage - worm_development - WBls:0000557 - 446 min post first-cleavage Ce + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 446 min post first-cleavage + worm_development + WBls:0000557 + 446 min post first-cleavage Ce - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18668,20 +18674,20 @@ - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 447 min post first-cleavage - worm_development - WBls:0000558 - 447 min post first-cleavage Ce + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 447 min post first-cleavage + worm_development + WBls:0000558 + 447 min post first-cleavage Ce - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18702,20 +18708,20 @@ - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 448 min post first-cleavage - worm_development - WBls:0000559 - 448 min post first-cleavage Ce + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 448 min post first-cleavage + worm_development + WBls:0000559 + 448 min post first-cleavage Ce - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18736,20 +18742,20 @@ - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 449 min post first-cleavage - worm_development - WBls:0000560 - 449 min post first-cleavage Ce + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 449 min post first-cleavage + worm_development + WBls:0000560 + 449 min post first-cleavage Ce - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18770,20 +18776,20 @@ - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 450 min post first-cleavage - worm_development - WBls:0000561 - 450 min post first-cleavage Ce + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 450 min post first-cleavage + worm_development + WBls:0000561 + 450 min post first-cleavage Ce - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18804,20 +18810,20 @@ - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 451 min post first-cleavage - worm_development - WBls:0000562 - 451 min post first-cleavage Ce + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 451 min post first-cleavage + worm_development + WBls:0000562 + 451 min post first-cleavage Ce - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18838,20 +18844,20 @@ - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 452 min post first-cleavage - worm_development - WBls:0000563 - 452 min post first-cleavage Ce + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 452 min post first-cleavage + worm_development + WBls:0000563 + 452 min post first-cleavage Ce - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18872,20 +18878,20 @@ - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 453 min post first-cleavage - worm_development - WBls:0000564 - 453 min post first-cleavage Ce + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 453 min post first-cleavage + worm_development + WBls:0000564 + 453 min post first-cleavage Ce - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18906,20 +18912,20 @@ - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 454 min post first-cleavage - worm_development - WBls:0000565 - 454 min post first-cleavage Ce + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 454 min post first-cleavage + worm_development + WBls:0000565 + 454 min post first-cleavage Ce - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18940,20 +18946,20 @@ - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 455 min post first-cleavage - worm_development - WBls:0000566 - 455 min post first-cleavage Ce + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 455 min post first-cleavage + worm_development + WBls:0000566 + 455 min post first-cleavage Ce - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18974,20 +18980,20 @@ - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 456 min post first-cleavage - worm_development - WBls:0000567 - 456 min post first-cleavage Ce + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 456 min post first-cleavage + worm_development + WBls:0000567 + 456 min post first-cleavage Ce - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19008,20 +19014,20 @@ - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 457 min post first-cleavage - worm_development - WBls:0000568 - 457 min post first-cleavage Ce + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 457 min post first-cleavage + worm_development + WBls:0000568 + 457 min post first-cleavage Ce - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19042,20 +19048,20 @@ - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 458 min post first-cleavage - worm_development - WBls:0000569 - 458 min post first-cleavage Ce + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 458 min post first-cleavage + worm_development + WBls:0000569 + 458 min post first-cleavage Ce - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19076,20 +19082,20 @@ - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 459 min post first-cleavage - worm_development - WBls:0000570 - 459 min post first-cleavage Ce + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 459 min post first-cleavage + worm_development + WBls:0000570 + 459 min post first-cleavage Ce - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19110,20 +19116,20 @@ - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 460 min post first-cleavage - worm_development - WBls:0000571 - 460 min post first-cleavage Ce + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 460 min post first-cleavage + worm_development + WBls:0000571 + 460 min post first-cleavage Ce - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19144,20 +19150,20 @@ - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 461 min post first-cleavage - worm_development - WBls:0000572 - 461 min post first-cleavage Ce + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 461 min post first-cleavage + worm_development + WBls:0000572 + 461 min post first-cleavage Ce - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19178,20 +19184,20 @@ - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 462 min post first-cleavage - worm_development - WBls:0000573 - 462 min post first-cleavage Ce + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 462 min post first-cleavage + worm_development + WBls:0000573 + 462 min post first-cleavage Ce - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19212,20 +19218,20 @@ - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 463 min post first-cleavage - worm_development - WBls:0000574 - 463 min post first-cleavage Ce + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 463 min post first-cleavage + worm_development + WBls:0000574 + 463 min post first-cleavage Ce - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19246,20 +19252,20 @@ - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 464 min post first-cleavage - worm_development - WBls:0000575 - 464 min post first-cleavage Ce + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 464 min post first-cleavage + worm_development + WBls:0000575 + 464 min post first-cleavage Ce - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19280,20 +19286,20 @@ - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 465 min post first-cleavage - worm_development - WBls:0000576 - 465 min post first-cleavage Ce + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 465 min post first-cleavage + worm_development + WBls:0000576 + 465 min post first-cleavage Ce - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19314,20 +19320,20 @@ - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 466 min post first-cleavage - worm_development - WBls:0000577 - 466 min post first-cleavage Ce + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 466 min post first-cleavage + worm_development + WBls:0000577 + 466 min post first-cleavage Ce - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19348,20 +19354,20 @@ - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 467 min post first-cleavage - worm_development - WBls:0000578 - 467 min post first-cleavage Ce + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 467 min post first-cleavage + worm_development + WBls:0000578 + 467 min post first-cleavage Ce - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19382,20 +19388,20 @@ - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 468 min post first-cleavage - worm_development - WBls:0000579 - 468 min post first-cleavage Ce + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 468 min post first-cleavage + worm_development + WBls:0000579 + 468 min post first-cleavage Ce - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19416,20 +19422,20 @@ - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 469 min post first-cleavage - worm_development - WBls:0000580 - 469 min post first-cleavage Ce + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 469 min post first-cleavage + worm_development + WBls:0000580 + 469 min post first-cleavage Ce - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19450,20 +19456,20 @@ - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 470 min post first-cleavage - worm_development - WBls:0000581 - 470 min post first-cleavage Ce + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 470 min post first-cleavage + worm_development + WBls:0000581 + 470 min post first-cleavage Ce - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19484,20 +19490,20 @@ - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 471 min post first-cleavage - worm_development - WBls:0000582 - 471 min post first-cleavage Ce + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 471 min post first-cleavage + worm_development + WBls:0000582 + 471 min post first-cleavage Ce - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19518,20 +19524,20 @@ - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 472 min post first-cleavage - worm_development - WBls:0000583 - 472 min post first-cleavage Ce + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 472 min post first-cleavage + worm_development + WBls:0000583 + 472 min post first-cleavage Ce - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19552,20 +19558,20 @@ - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 473 min post first-cleavage - worm_development - WBls:0000584 - 473 min post first-cleavage Ce + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 473 min post first-cleavage + worm_development + WBls:0000584 + 473 min post first-cleavage Ce - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19586,20 +19592,20 @@ - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 474 min post first-cleavage - worm_development - WBls:0000585 - 474 min post first-cleavage Ce + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 474 min post first-cleavage + worm_development + WBls:0000585 + 474 min post first-cleavage Ce - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19620,20 +19626,20 @@ - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 475 min post first-cleavage - worm_development - WBls:0000586 - 475 min post first-cleavage Ce + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 475 min post first-cleavage + worm_development + WBls:0000586 + 475 min post first-cleavage Ce - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19654,20 +19660,20 @@ - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 476 min post first-cleavage - worm_development - WBls:0000587 - 476 min post first-cleavage Ce + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 476 min post first-cleavage + worm_development + WBls:0000587 + 476 min post first-cleavage Ce - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19688,20 +19694,20 @@ - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 477 min post first-cleavage - worm_development - WBls:0000588 - 477 min post first-cleavage Ce + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 477 min post first-cleavage + worm_development + WBls:0000588 + 477 min post first-cleavage Ce - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19722,20 +19728,20 @@ - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 478 min post first-cleavage - worm_development - WBls:0000589 - 478 min post first-cleavage Ce + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 478 min post first-cleavage + worm_development + WBls:0000589 + 478 min post first-cleavage Ce - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19756,20 +19762,20 @@ - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 479 min post first-cleavage - worm_development - WBls:0000590 - 479 min post first-cleavage Ce + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 479 min post first-cleavage + worm_development + WBls:0000590 + 479 min post first-cleavage Ce - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19790,20 +19796,20 @@ - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 480 min post first-cleavage - worm_development - WBls:0000591 - 480 min post first-cleavage Ce + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 480 min post first-cleavage + worm_development + WBls:0000591 + 480 min post first-cleavage Ce - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19824,20 +19830,20 @@ - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 481 min post first-cleavage - worm_development - WBls:0000592 - 481 min post first-cleavage Ce + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 481 min post first-cleavage + worm_development + WBls:0000592 + 481 min post first-cleavage Ce - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19858,20 +19864,20 @@ - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 482 min post first-cleavage - worm_development - WBls:0000593 - 482 min post first-cleavage Ce + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 482 min post first-cleavage + worm_development + WBls:0000593 + 482 min post first-cleavage Ce - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19892,20 +19898,20 @@ - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 483 min post first-cleavage - worm_development - WBls:0000594 - 483 min post first-cleavage Ce + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 483 min post first-cleavage + worm_development + WBls:0000594 + 483 min post first-cleavage Ce - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19926,20 +19932,20 @@ - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 484 min post first-cleavage - worm_development - WBls:0000595 - 484 min post first-cleavage Ce + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 484 min post first-cleavage + worm_development + WBls:0000595 + 484 min post first-cleavage Ce - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19960,20 +19966,20 @@ - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 485 min post first-cleavage - worm_development - WBls:0000596 - 485 min post first-cleavage Ce + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 485 min post first-cleavage + worm_development + WBls:0000596 + 485 min post first-cleavage Ce - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19994,20 +20000,20 @@ - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 486 min post first-cleavage - worm_development - WBls:0000597 - 486 min post first-cleavage Ce + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 486 min post first-cleavage + worm_development + WBls:0000597 + 486 min post first-cleavage Ce - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20028,20 +20034,20 @@ - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 487 min post first-cleavage - worm_development - WBls:0000598 - 487 min post first-cleavage Ce + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 487 min post first-cleavage + worm_development + WBls:0000598 + 487 min post first-cleavage Ce - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20062,20 +20068,20 @@ - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 488 min post first-cleavage - worm_development - WBls:0000599 - 488 min post first-cleavage Ce + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 488 min post first-cleavage + worm_development + WBls:0000599 + 488 min post first-cleavage Ce - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20096,20 +20102,20 @@ - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 489 min post first-cleavage - worm_development - WBls:0000600 - 489 min post first-cleavage Ce + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 489 min post first-cleavage + worm_development + WBls:0000600 + 489 min post first-cleavage Ce - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20130,20 +20136,20 @@ - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 490 min post first-cleavage - worm_development - WBls:0000601 - 490 min post first-cleavage Ce + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 490 min post first-cleavage + worm_development + WBls:0000601 + 490 min post first-cleavage Ce - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20164,20 +20170,20 @@ - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 491 min post first-cleavage - worm_development - WBls:0000602 - 491 min post first-cleavage Ce + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 491 min post first-cleavage + worm_development + WBls:0000602 + 491 min post first-cleavage Ce - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20198,20 +20204,20 @@ - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 492 min post first-cleavage - worm_development - WBls:0000603 - 492 min post first-cleavage Ce + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 492 min post first-cleavage + worm_development + WBls:0000603 + 492 min post first-cleavage Ce - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20232,20 +20238,20 @@ - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 493 min post first-cleavage - worm_development - WBls:0000604 - 493 min post first-cleavage Ce + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 493 min post first-cleavage + worm_development + WBls:0000604 + 493 min post first-cleavage Ce - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20266,20 +20272,20 @@ - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 494 min post first-cleavage - worm_development - WBls:0000605 - 494 min post first-cleavage Ce + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 494 min post first-cleavage + worm_development + WBls:0000605 + 494 min post first-cleavage Ce - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20300,20 +20306,20 @@ - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 495 min post first-cleavage - worm_development - WBls:0000606 - 495 min post first-cleavage Ce + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 495 min post first-cleavage + worm_development + WBls:0000606 + 495 min post first-cleavage Ce - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20334,20 +20340,20 @@ - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 496 min post first-cleavage - worm_development - WBls:0000607 - 496 min post first-cleavage Ce + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 496 min post first-cleavage + worm_development + WBls:0000607 + 496 min post first-cleavage Ce - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20368,20 +20374,20 @@ - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 497 min post first-cleavage - worm_development - WBls:0000608 - 497 min post first-cleavage Ce + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 497 min post first-cleavage + worm_development + WBls:0000608 + 497 min post first-cleavage Ce - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20402,20 +20408,20 @@ - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 498 min post first-cleavage - worm_development - WBls:0000609 - 498 min post first-cleavage Ce + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 498 min post first-cleavage + worm_development + WBls:0000609 + 498 min post first-cleavage Ce - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20436,20 +20442,20 @@ - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 499 min post first-cleavage - worm_development - WBls:0000610 - 499 min post first-cleavage Ce + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 499 min post first-cleavage + worm_development + WBls:0000610 + 499 min post first-cleavage Ce - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20470,20 +20476,20 @@ - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 500 min post first-cleavage - worm_development - WBls:0000611 - 500 min post first-cleavage Ce + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 500 min post first-cleavage + worm_development + WBls:0000611 + 500 min post first-cleavage Ce - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20504,20 +20510,20 @@ - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 501 min post first-cleavage - worm_development - WBls:0000612 - 501 min post first-cleavage Ce + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 501 min post first-cleavage + worm_development + WBls:0000612 + 501 min post first-cleavage Ce - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20538,20 +20544,20 @@ - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 502 min post first-cleavage - worm_development - WBls:0000613 - 502 min post first-cleavage Ce + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 502 min post first-cleavage + worm_development + WBls:0000613 + 502 min post first-cleavage Ce - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20572,20 +20578,20 @@ - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 503 min post first-cleavage - worm_development - WBls:0000614 - 503 min post first-cleavage Ce + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 503 min post first-cleavage + worm_development + WBls:0000614 + 503 min post first-cleavage Ce - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20606,20 +20612,20 @@ - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 504 min post first-cleavage - worm_development - WBls:0000615 - 504 min post first-cleavage Ce + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 504 min post first-cleavage + worm_development + WBls:0000615 + 504 min post first-cleavage Ce - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20640,20 +20646,20 @@ - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 505 min post first-cleavage - worm_development - WBls:0000616 - 505 min post first-cleavage Ce + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 505 min post first-cleavage + worm_development + WBls:0000616 + 505 min post first-cleavage Ce - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20674,20 +20680,20 @@ - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 506 min post first-cleavage - worm_development - WBls:0000617 - 506 min post first-cleavage Ce + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 506 min post first-cleavage + worm_development + WBls:0000617 + 506 min post first-cleavage Ce - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20708,20 +20714,20 @@ - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 507 min post first-cleavage - worm_development - WBls:0000618 - 507 min post first-cleavage Ce + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 507 min post first-cleavage + worm_development + WBls:0000618 + 507 min post first-cleavage Ce - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20742,20 +20748,20 @@ - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 508 min post first-cleavage - worm_development - WBls:0000619 - 508 min post first-cleavage Ce + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 508 min post first-cleavage + worm_development + WBls:0000619 + 508 min post first-cleavage Ce - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20776,20 +20782,20 @@ - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 509 min post first-cleavage - worm_development - WBls:0000620 - 509 min post first-cleavage Ce + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 509 min post first-cleavage + worm_development + WBls:0000620 + 509 min post first-cleavage Ce - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20810,20 +20816,20 @@ - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 510 min post first-cleavage - worm_development - WBls:0000621 - 510 min post first-cleavage Ce + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 510 min post first-cleavage + worm_development + WBls:0000621 + 510 min post first-cleavage Ce - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20844,20 +20850,20 @@ - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 511 min post first-cleavage - worm_development - WBls:0000622 - 511 min post first-cleavage Ce + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 511 min post first-cleavage + worm_development + WBls:0000622 + 511 min post first-cleavage Ce - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20878,20 +20884,20 @@ - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 512 min post first-cleavage - worm_development - WBls:0000623 - 512 min post first-cleavage Ce + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 512 min post first-cleavage + worm_development + WBls:0000623 + 512 min post first-cleavage Ce - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20912,20 +20918,20 @@ - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 513 min post first-cleavage - worm_development - WBls:0000624 - 513 min post first-cleavage Ce + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 513 min post first-cleavage + worm_development + WBls:0000624 + 513 min post first-cleavage Ce - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20946,20 +20952,20 @@ - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 514 min post first-cleavage - worm_development - WBls:0000625 - 514 min post first-cleavage Ce + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 514 min post first-cleavage + worm_development + WBls:0000625 + 514 min post first-cleavage Ce - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20980,20 +20986,20 @@ - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 515 min post first-cleavage - worm_development - WBls:0000626 - 515 min post first-cleavage Ce + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 515 min post first-cleavage + worm_development + WBls:0000626 + 515 min post first-cleavage Ce - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21014,20 +21020,20 @@ - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 516 min post first-cleavage - worm_development - WBls:0000627 - 516 min post first-cleavage Ce + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 516 min post first-cleavage + worm_development + WBls:0000627 + 516 min post first-cleavage Ce - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21048,20 +21054,20 @@ - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 517 min post first-cleavage - worm_development - WBls:0000628 - 517 min post first-cleavage Ce + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 517 min post first-cleavage + worm_development + WBls:0000628 + 517 min post first-cleavage Ce - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21082,20 +21088,20 @@ - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 518 min post first-cleavage - worm_development - WBls:0000629 - 518 min post first-cleavage Ce + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 518 min post first-cleavage + worm_development + WBls:0000629 + 518 min post first-cleavage Ce - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21116,20 +21122,20 @@ - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 519 min post first-cleavage - worm_development - WBls:0000630 - 519 min post first-cleavage Ce + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 519 min post first-cleavage + worm_development + WBls:0000630 + 519 min post first-cleavage Ce - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21150,20 +21156,20 @@ - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 520 min post first-cleavage - worm_development - WBls:0000631 - 520 min post first-cleavage Ce + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 520 min post first-cleavage + worm_development + WBls:0000631 + 520 min post first-cleavage Ce - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21184,20 +21190,20 @@ - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 521 min post first-cleavage - worm_development - WBls:0000632 - 521 min post first-cleavage Ce + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 521 min post first-cleavage + worm_development + WBls:0000632 + 521 min post first-cleavage Ce - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21218,20 +21224,20 @@ - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 522 min post first-cleavage - worm_development - WBls:0000633 - 522 min post first-cleavage Ce + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 522 min post first-cleavage + worm_development + WBls:0000633 + 522 min post first-cleavage Ce - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21252,20 +21258,20 @@ - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 523 min post first-cleavage - worm_development - WBls:0000634 - 523 min post first-cleavage Ce + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 523 min post first-cleavage + worm_development + WBls:0000634 + 523 min post first-cleavage Ce - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21286,20 +21292,20 @@ - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 524 min post first-cleavage - worm_development - WBls:0000635 - 524 min post first-cleavage Ce + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 524 min post first-cleavage + worm_development + WBls:0000635 + 524 min post first-cleavage Ce - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21320,20 +21326,20 @@ - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 525 min post first-cleavage - worm_development - WBls:0000636 - 525 min post first-cleavage Ce + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 525 min post first-cleavage + worm_development + WBls:0000636 + 525 min post first-cleavage Ce - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21354,20 +21360,20 @@ - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 526 min post first-cleavage - worm_development - WBls:0000637 - 526 min post first-cleavage Ce + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 526 min post first-cleavage + worm_development + WBls:0000637 + 526 min post first-cleavage Ce - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21388,20 +21394,20 @@ - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 527 min post first-cleavage - worm_development - WBls:0000638 - 527 min post first-cleavage Ce + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 527 min post first-cleavage + worm_development + WBls:0000638 + 527 min post first-cleavage Ce - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21422,20 +21428,20 @@ - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 528 min post first-cleavage - worm_development - WBls:0000639 - 528 min post first-cleavage Ce + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 528 min post first-cleavage + worm_development + WBls:0000639 + 528 min post first-cleavage Ce - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21456,20 +21462,20 @@ - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 529 min post first-cleavage - worm_development - WBls:0000640 - 529 min post first-cleavage Ce + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 529 min post first-cleavage + worm_development + WBls:0000640 + 529 min post first-cleavage Ce - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21490,20 +21496,20 @@ - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 530 min post first-cleavage - worm_development - WBls:0000641 - 530 min post first-cleavage Ce + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 530 min post first-cleavage + worm_development + WBls:0000641 + 530 min post first-cleavage Ce - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21524,20 +21530,20 @@ - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 531 min post first-cleavage - worm_development - WBls:0000642 - 531 min post first-cleavage Ce + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 531 min post first-cleavage + worm_development + WBls:0000642 + 531 min post first-cleavage Ce - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21558,20 +21564,20 @@ - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 532 min post first-cleavage - worm_development - WBls:0000643 - 532 min post first-cleavage Ce + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 532 min post first-cleavage + worm_development + WBls:0000643 + 532 min post first-cleavage Ce - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21592,20 +21598,20 @@ - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 533 min post first-cleavage - worm_development - WBls:0000644 - 533 min post first-cleavage Ce + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 533 min post first-cleavage + worm_development + WBls:0000644 + 533 min post first-cleavage Ce - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21626,20 +21632,20 @@ - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 534 min post first-cleavage - worm_development - WBls:0000645 - 534 min post first-cleavage Ce + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 534 min post first-cleavage + worm_development + WBls:0000645 + 534 min post first-cleavage Ce - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21660,20 +21666,20 @@ - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 535 min post first-cleavage - worm_development - WBls:0000646 - 535 min post first-cleavage Ce + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 535 min post first-cleavage + worm_development + WBls:0000646 + 535 min post first-cleavage Ce - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21694,20 +21700,20 @@ - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 536 min post first-cleavage - worm_development - WBls:0000647 - 536 min post first-cleavage Ce + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 536 min post first-cleavage + worm_development + WBls:0000647 + 536 min post first-cleavage Ce - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21728,20 +21734,20 @@ - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 537 min post first-cleavage - worm_development - WBls:0000648 - 537 min post first-cleavage Ce + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 537 min post first-cleavage + worm_development + WBls:0000648 + 537 min post first-cleavage Ce - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21762,20 +21768,20 @@ - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 538 min post first-cleavage - worm_development - WBls:0000649 - 538 min post first-cleavage Ce + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 538 min post first-cleavage + worm_development + WBls:0000649 + 538 min post first-cleavage Ce - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21796,20 +21802,20 @@ - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 539 min post first-cleavage - worm_development - WBls:0000650 - 539 min post first-cleavage Ce + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 539 min post first-cleavage + worm_development + WBls:0000650 + 539 min post first-cleavage Ce - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21830,20 +21836,20 @@ - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 540 min post first-cleavage - worm_development - WBls:0000651 - 540 min post first-cleavage Ce + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 540 min post first-cleavage + worm_development + WBls:0000651 + 540 min post first-cleavage Ce - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21864,20 +21870,20 @@ - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 541 min post first-cleavage - worm_development - WBls:0000652 - 541 min post first-cleavage Ce + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 541 min post first-cleavage + worm_development + WBls:0000652 + 541 min post first-cleavage Ce - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21898,20 +21904,20 @@ - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 542 min post first-cleavage - worm_development - WBls:0000653 - 542 min post first-cleavage Ce + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 542 min post first-cleavage + worm_development + WBls:0000653 + 542 min post first-cleavage Ce - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21932,20 +21938,20 @@ - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 543 min post first-cleavage - worm_development - WBls:0000654 - 543 min post first-cleavage Ce + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 543 min post first-cleavage + worm_development + WBls:0000654 + 543 min post first-cleavage Ce - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21966,20 +21972,20 @@ - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 544 min post first-cleavage - worm_development - WBls:0000655 - 544 min post first-cleavage Ce + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 544 min post first-cleavage + worm_development + WBls:0000655 + 544 min post first-cleavage Ce - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22000,20 +22006,20 @@ - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 545 min post first-cleavage - worm_development - WBls:0000656 - 545 min post first-cleavage Ce + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 545 min post first-cleavage + worm_development + WBls:0000656 + 545 min post first-cleavage Ce - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22034,20 +22040,20 @@ - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 546 min post first-cleavage - worm_development - WBls:0000657 - 546 min post first-cleavage Ce + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 546 min post first-cleavage + worm_development + WBls:0000657 + 546 min post first-cleavage Ce - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22068,20 +22074,20 @@ - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 547 min post first-cleavage - worm_development - WBls:0000658 - 547 min post first-cleavage Ce + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 547 min post first-cleavage + worm_development + WBls:0000658 + 547 min post first-cleavage Ce - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22102,20 +22108,20 @@ - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 548 min post first-cleavage - worm_development - WBls:0000659 - 548 min post first-cleavage Ce + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 548 min post first-cleavage + worm_development + WBls:0000659 + 548 min post first-cleavage Ce - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22136,20 +22142,20 @@ - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 549 min post first-cleavage - worm_development - WBls:0000660 - 549 min post first-cleavage Ce + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 549 min post first-cleavage + worm_development + WBls:0000660 + 549 min post first-cleavage Ce - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22170,20 +22176,20 @@ - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 550 min post first-cleavage - worm_development - WBls:0000661 - 550 min post first-cleavage Ce + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 550 min post first-cleavage + worm_development + WBls:0000661 + 550 min post first-cleavage Ce - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22209,24 +22215,24 @@ - 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. - danielaraciti - 2014-11-10T09:29:36Z - WBls:0000078 - unsheathed microfilaria - Brugia mature microfilaria - mature microfilaria Bma - unsheathed microfilaria Bma - worm_development - WBls:0000663 - Brugia unsheathed microfilaria + 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. + danielaraciti + 2014-11-10T09:29:36Z + WBls:0000078 + unsheathed microfilaria + Brugia mature microfilaria + mature microfilaria Bma + unsheathed microfilaria Bma + worm_development + WBls:0000663 + Brugia unsheathed microfilaria - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -22235,23 +22241,23 @@ - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:23:44Z - MF - microfilaria nematode - microfilariae - worm_development - WBls:0000664 - Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. - microfilaria + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:23:44Z + MF + microfilaria nematode + microfilariae + worm_development + WBls:0000664 + Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. + microfilaria - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - WB:dr - WB:jl + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + WB:dr + WB:jl @@ -22266,22 +22272,22 @@ - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:25:34Z - microfilaria - Brugia MF - microfilaria Bma - worm_development - WBls:0000665 - Brugia microfilaria + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:25:34Z + microfilaria + Brugia MF + microfilaria Bma + worm_development + WBls:0000665 + Brugia microfilaria - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - WB:dr - WB:mb + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + WB:dr + WB:mb @@ -22302,20 +22308,20 @@ - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - danielaraciti - 2014-11-25T09:50:35Z - unsheathed microfilaria nematode - unsheathed microfilariae - worm_development - WBls:0000666 - unsheathed microfilaria + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + danielaraciti + 2014-11-25T09:50:35Z + unsheathed microfilaria nematode + unsheathed microfilariae + worm_development + WBls:0000666 + unsheathed microfilaria - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - WB:WBPerson2987 + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + WB:WBPerson2987 @@ -22324,21 +22330,21 @@ - Microfilaria larvae found in nodules and ulcers. - danielaraciti - 2014-11-25T09:52:54Z - nodular microfilariae - nodular microfilariae nematode - worm_development - WBls:0000667 - nodular microfilaria + Microfilaria larvae found in nodules and ulcers. + danielaraciti + 2014-11-25T09:52:54Z + nodular microfilariae + nodular microfilariae nematode + worm_development + WBls:0000667 + nodular microfilaria - Microfilaria larvae found in nodules and ulcers. - PMID:1796232 - WB:WBPerson4055 + Microfilaria larvae found in nodules and ulcers. + PMID:1796232 + WB:WBPerson4055 @@ -22347,21 +22353,21 @@ - Microfilaria larvae found subcutaneously - danielaraciti - 2014-11-25T09:52:54Z - skin microfilariae - worm_development - WBls:0000668 - skin microfilaria + Microfilaria larvae found subcutaneously + danielaraciti + 2014-11-25T09:52:54Z + skin microfilariae + worm_development + WBls:0000668 + skin microfilaria - Microfilaria larvae found subcutaneously - PMID:20772951 - PMID:7797912 - WB:WBPerson4055 + Microfilaria larvae found subcutaneously + PMID:20772951 + PMID:7797912 + WB:WBPerson4055 @@ -22370,19 +22376,19 @@ - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - danielaraciti - 2014-11-26T11:49:22Z - unfertilized egg - worm_development - WBls:0000669 - unfertilized egg Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + danielaraciti + 2014-11-26T11:49:22Z + unfertilized egg + worm_development + WBls:0000669 + unfertilized egg Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - WB:WBPerson2987 + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + WB:WBPerson2987 @@ -22403,17 +22409,17 @@ - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - 6-days post-L4 adult hermaphrodite - worm_development - WBls:0000670 - 6-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + 6-days post-L4 adult hermaphrodite + worm_development + WBls:0000670 + 6-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - WB:dr + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + WB:dr @@ -22434,17 +22440,17 @@ - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - 7-days post-L4 adult hermaphrodite - worm_development - WBls:0000671 - 7-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + 7-days post-L4 adult hermaphrodite + worm_development + WBls:0000671 + 7-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - WB:dr + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + WB:dr @@ -22465,17 +22471,17 @@ - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - 8-days post-L4 adult hermaphrodite - worm_development - WBls:0000672 - 8-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + 8-days post-L4 adult hermaphrodite + worm_development + WBls:0000672 + 8-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - WB:dr + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + WB:dr @@ -22496,17 +22502,17 @@ - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - 9-days post-L4 adult hermaphrodite - worm_development - WBls:0000673 - 9-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + 9-days post-L4 adult hermaphrodite + worm_development + WBls:0000673 + 9-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - WB:dr + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + WB:dr @@ -22527,17 +22533,17 @@ - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - 10-days post-L4 adult hermaphrodite - worm_development - WBls:0000674 - 10-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + 10-days post-L4 adult hermaphrodite + worm_development + WBls:0000674 + 10-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - WB:dr + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + WB:dr @@ -22558,17 +22564,17 @@ - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - 15-days post-L4 adult hermaphrodite - worm_development - WBls:0000675 - 15-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + 15-days post-L4 adult hermaphrodite + worm_development + WBls:0000675 + 15-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - WB:dr + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + WB:dr @@ -22589,17 +22595,17 @@ - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - 20-days post-L4 adult hermaphrodite - worm_development - WBls:0000676 - 20-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + 20-days post-L4 adult hermaphrodite + worm_development + WBls:0000676 + 20-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - WB:dr + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + WB:dr @@ -22609,19 +22615,19 @@ - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - jl16 - 2015-03-19T10:51:48Z - free-living stage - worm_development - WBls:0000677 - Strongyloides free-living stage + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + jl16 + 2015-03-19T10:51:48Z + free-living stage + worm_development + WBls:0000677 + Strongyloides free-living stage - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + WB:jl @@ -22631,19 +22637,19 @@ - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - jl16 - 2015-03-19T10:52:41Z - parasitic stage - worm_development - WBls:0000678 - Strongyloides parasitic stage + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + jl16 + 2015-03-19T10:52:41Z + parasitic stage + worm_development + WBls:0000678 + Strongyloides parasitic stage - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + WB:jl @@ -22652,20 +22658,20 @@ - Larval stage that is capable of infecting a host organism. - jl16 - 2015-03-19T11:21:35Z - infective larva - worm_development - WBls:0000679 - Host organism here refers to the main host organism rather than intermediate hosts. - nematode infective stage larva + Larval stage that is capable of infecting a host organism. + jl16 + 2015-03-19T11:21:35Z + infective larva + worm_development + WBls:0000679 + Host organism here refers to the main host organism rather than intermediate hosts. + nematode infective stage larva - Larval stage that is capable of infecting a host organism. - WB:jl + Larval stage that is capable of infecting a host organism. + WB:jl @@ -22676,21 +22682,21 @@ - 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. - jl16 - 2015-03-19T11:27:15Z - infective L3 - Strongyloides iL3 - Strongyloides infective stage larva - worm_development - WBls:0000680 - Strongyloides infective L3 + 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. + jl16 + 2015-03-19T11:27:15Z + infective L3 + Strongyloides iL3 + Strongyloides infective stage larva + worm_development + WBls:0000680 + Strongyloides infective L3 - 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. - WB:jl + 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. + WB:jl @@ -22700,20 +22706,20 @@ - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - jl16 - 2015-03-19T11:36:03Z - parasitic female - Strongyloides L5 - worm_development - WBls:0000681 - Strongyloides parasitic female + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + jl16 + 2015-03-19T11:36:03Z + parasitic female + Strongyloides L5 + worm_development + WBls:0000681 + Strongyloides parasitic female - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - WB:jl + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + WB:jl @@ -22723,20 +22729,20 @@ - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - jl16 - 2015-03-19T11:48:09Z - free-living adult - Strongyloides free-living L5 - worm_development - WBls:0000682 - Strongyloides free-living adult + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + jl16 + 2015-03-19T11:48:09Z + free-living adult + Strongyloides free-living L5 + worm_development + WBls:0000682 + Strongyloides free-living adult - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - WB:jl + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + WB:jl @@ -22757,20 +22763,20 @@ - 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. - danielaraciti - 2015-06-03T09:03:09Z - L4.0 larva - worm_development - WBls:0000683 - L4.0 larva Ce + 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. + danielaraciti + 2015-06-03T09:03:09Z + L4.0 larva + worm_development + WBls:0000683 + L4.0 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22791,20 +22797,20 @@ - 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. - danielaraciti - 2015-06-03T09:06:19Z - L4.1 larva - worm_development - WBls:0000684 - L4.1 larva Ce + 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. + danielaraciti + 2015-06-03T09:06:19Z + L4.1 larva + worm_development + WBls:0000684 + L4.1 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22825,20 +22831,20 @@ - 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. - danielaraciti - 2015-06-03T09:09:03Z - L4.2 larva - worm_development - WBls:0000685 - L4.2 larva Ce + 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. + danielaraciti + 2015-06-03T09:09:03Z + L4.2 larva + worm_development + WBls:0000685 + L4.2 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22859,20 +22865,20 @@ - 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. - danielaraciti - 2015-06-03T09:10:09Z - L4.3 larva - worm_development - WBls:0000686 - L4.3 larva Ce + 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. + danielaraciti + 2015-06-03T09:10:09Z + L4.3 larva + worm_development + WBls:0000686 + L4.3 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22893,20 +22899,20 @@ - 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. - danielaraciti - 2015-06-03T09:11:12Z - L4.4 larva - worm_development - WBls:0000687 - L4.4 larva Ce + 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. + danielaraciti + 2015-06-03T09:11:12Z + L4.4 larva + worm_development + WBls:0000687 + L4.4 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22927,20 +22933,20 @@ - 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. - danielaraciti - 2015-06-03T09:13:09Z - L4.5 larva - worm_development - WBls:0000688 - L4.5 larva Ce + 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. + danielaraciti + 2015-06-03T09:13:09Z + L4.5 larva + worm_development + WBls:0000688 + L4.5 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22961,20 +22967,20 @@ - 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. - danielaraciti - 2015-06-03T09:15:18Z - L4.6 larva - worm_development - WBls:0000689 - L4.6 larva Ce + 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. + danielaraciti + 2015-06-03T09:15:18Z + L4.6 larva + worm_development + WBls:0000689 + L4.6 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -22995,20 +23001,20 @@ - 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. - danielaraciti - 2015-06-03T09:16:07Z - L4.7 larva - worm_development - WBls:0000690 - L4.7 larva Ce + 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. + danielaraciti + 2015-06-03T09:16:07Z + L4.7 larva + worm_development + WBls:0000690 + L4.7 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23029,20 +23035,20 @@ - 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. - danielaraciti - 2015-06-03T09:18:02Z - L4.8 larva - worm_development - WBls:0000691 - L4.8 larva Ce + 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. + danielaraciti + 2015-06-03T09:18:02Z + L4.8 larva + worm_development + WBls:0000691 + L4.8 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23063,20 +23069,20 @@ - 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. - danielaraciti - 2015-06-03T09:20:37Z - L4.9 larva - worm_development - WBls:0000692 - L4.9 larva Ce + 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. + danielaraciti + 2015-06-03T09:20:37Z + L4.9 larva + worm_development + WBls:0000692 + L4.9 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23097,19 +23103,19 @@ - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T09:27:59Z - 560 min post first-cleavage - worm_development - WBls:0000693 - 560 min post first-cleavage Ce + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T09:27:59Z + 560 min post first-cleavage + worm_development + WBls:0000693 + 560 min post first-cleavage Ce - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23130,19 +23136,19 @@ - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T10:07:46Z - 570 min post first-cleavage - worm_development - WBls:0000694 - 570 min post first-cleavage Ce + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T10:07:46Z + 570 min post first-cleavage + worm_development + WBls:0000694 + 570 min post first-cleavage Ce - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23163,19 +23169,19 @@ - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:08:29Z - 640 min post first-cleavage - worm_development - WBls:0000695 - 640 min post first-cleavage Ce + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:08:29Z + 640 min post first-cleavage + worm_development + WBls:0000695 + 640 min post first-cleavage Ce - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23196,19 +23202,19 @@ - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:11:15Z - 650 min post first-cleavage - worm_development - WBls:0000696 - 650 min post first-cleavage Ce + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:11:15Z + 650 min post first-cleavage + worm_development + WBls:0000696 + 650 min post first-cleavage Ce - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23229,19 +23235,19 @@ - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:13:05Z - 660 min post first-cleavage - worm_development - WBls:0000697 - 660 min post first-cleavage Ce + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:13:05Z + 660 min post first-cleavage + worm_development + WBls:0000697 + 660 min post first-cleavage Ce - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23262,19 +23268,19 @@ - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:16:33Z - 720 min post first-cleavage - worm_development - WBls:0000698 - 720 min post first-cleavage Ce + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:16:33Z + 720 min post first-cleavage + worm_development + WBls:0000698 + 720 min post first-cleavage Ce - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23295,19 +23301,19 @@ - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:18:49Z - 770 min post first-cleavage - worm_development - WBls:0000699 - 770 min post first-cleavage Ce + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:18:49Z + 770 min post first-cleavage + worm_development + WBls:0000699 + 770 min post first-cleavage Ce - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23328,19 +23334,19 @@ - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:23:34Z - 780 min post first-cleavage - worm_development - WBls:0000700 - 780 min post first-cleavage Ce + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:23:34Z + 780 min post first-cleavage + worm_development + WBls:0000700 + 780 min post first-cleavage Ce - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23361,19 +23367,19 @@ - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:25:47Z - 820 min post first-cleavage - worm_development - WBls:0000701 - 820 min post first-cleavage Ce + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:25:47Z + 820 min post first-cleavage + worm_development + WBls:0000701 + 820 min post first-cleavage Ce - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23394,19 +23400,19 @@ - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:28:41Z - 830 min post first-cleavage - worm_development - WBls:0000702 - 830 min post first-cleavage Ce + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:28:41Z + 830 min post first-cleavage + worm_development + WBls:0000702 + 830 min post first-cleavage Ce - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23427,19 +23433,19 @@ - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:30:33Z - 850 min post first-cleavage - worm_development - WBls:0000703 - 850 min post first-cleavage Ce + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:30:33Z + 850 min post first-cleavage + worm_development + WBls:0000703 + 850 min post first-cleavage Ce - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23448,20 +23454,20 @@ - Any developmental stage in Platyhelminthes (flatworms). - jl16 - 2016-03-16T11:14:50Z - Platyhelminthes developmental stage - platyhelminth developmental stage - worm_development - WBls:0000704 - Platyhelminthes life stage + Any developmental stage in Platyhelminthes (flatworms). + jl16 + 2016-03-16T11:14:50Z + Platyhelminthes developmental stage + platyhelminth developmental stage + worm_development + WBls:0000704 + Platyhelminthes life stage - Any developmental stage in Platyhelminthes (flatworms). - WB:jl + Any developmental stage in Platyhelminthes (flatworms). + WB:jl @@ -23470,20 +23476,20 @@ - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - jl16 - 2016-03-16T11:17:04Z - egg - platyhelminth egg - worm_development - WBls:0000705 - Platyhelminthes egg + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + jl16 + 2016-03-16T11:17:04Z + egg + platyhelminth egg + worm_development + WBls:0000705 + Platyhelminthes egg - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - WB:jl + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + WB:jl @@ -23492,18 +23498,18 @@ - 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. - jl16 - 2016-03-16T11:35:26Z - worm_development - WBls:0000706 - miracidium + 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. + jl16 + 2016-03-16T11:35:26Z + worm_development + WBls:0000706 + miracidium - 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. - WB:jl + 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. + WB:jl @@ -23512,18 +23518,18 @@ - 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. - jl16 - 2016-03-16T11:42:15Z - worm_development - WBls:0000707 - sporocyst + 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. + jl16 + 2016-03-16T11:42:15Z + worm_development + WBls:0000707 + sporocyst - 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. - WB:jl + 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. + WB:jl @@ -23532,20 +23538,20 @@ - 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. - jl16 - 2016-03-16T11:44:51Z - cercariae - worm_development - WBls:0000708 - cercarium + 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. + jl16 + 2016-03-16T11:44:51Z + cercariae + worm_development + WBls:0000708 + cercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -23560,19 +23566,19 @@ - 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. - jl16 - 2016-08-16T07:46:43Z - somule - worm_development - WBls:0000709 - schistosomulum + 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. + jl16 + 2016-08-16T07:46:43Z + somule + worm_development + WBls:0000709 + schistosomulum - 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 + 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 @@ -23587,20 +23593,20 @@ - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - jl16 - 2016-08-16T07:51:21Z - adult - platyhelminth adult - worm_development - WBls:0000710 - Platyhelminthes adult + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + jl16 + 2016-08-16T07:51:21Z + adult + platyhelminth adult + worm_development + WBls:0000710 + Platyhelminthes adult - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - WB:jl + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + WB:jl @@ -23609,20 +23615,20 @@ - A developmental stage of a Digenean (fluke). - jl16 - 2016-03-17T12:11:31Z - fluke life stage - worm_development - WBls:0000711 - Digeneans include the Schistosomatidae (blood flukes). - Digenean life stage + A developmental stage of a Digenean (fluke). + jl16 + 2016-03-17T12:11:31Z + fluke life stage + worm_development + WBls:0000711 + Digeneans include the Schistosomatidae (blood flukes). + Digenean life stage - A developmental stage of a Digenean (fluke). - WB:jl + A developmental stage of a Digenean (fluke). + WB:jl @@ -23631,18 +23637,18 @@ - Any developmental stage of a Cestode (tapeworm). - jl16 - 2016-03-17T12:18:32Z - worm_development - WBls:0000712 - Cestoda life stage + Any developmental stage of a Cestode (tapeworm). + jl16 + 2016-03-17T12:18:32Z + worm_development + WBls:0000712 + Cestoda life stage - Any developmental stage of a Cestode (tapeworm). - WB:jl + Any developmental stage of a Cestode (tapeworm). + WB:jl @@ -23651,19 +23657,19 @@ - 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. - jl16 - 2016-03-17T13:42:45Z - worm_development - hexcanth - WBls:0000713 - oncosphere + 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. + jl16 + 2016-03-17T13:42:45Z + worm_development + hexcanth + WBls:0000713 + oncosphere - 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. - WB:jl + 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. + WB:jl @@ -23678,22 +23684,22 @@ - 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. - jl16 - 2016-03-17T14:27:42Z - hydatid cyst - metacestode vesicle - worm_development - WBls:0000714 - 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. - hydatid cyst stage + 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. + jl16 + 2016-03-17T14:27:42Z + hydatid cyst + metacestode vesicle + worm_development + WBls:0000714 + 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. + hydatid cyst stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -23708,21 +23714,21 @@ - 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. - jl16 - 2016-03-17T14:40:14Z - protoscolex - worm_development - WBls:0000715 - 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. - protoscolex stage + 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. + jl16 + 2016-03-17T14:40:14Z + protoscolex + worm_development + WBls:0000715 + 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. + protoscolex stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -23731,20 +23737,20 @@ - 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. - jl16 - 2016-03-17T15:02:35Z - metacestode stage - worm_development - WBls:0000716 - metacestode + 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. + jl16 + 2016-03-17T15:02:35Z + metacestode stage + worm_development + WBls:0000716 + metacestode - 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. - ISBN:070202788X - WB:jl + 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. + ISBN:070202788X + WB:jl @@ -23759,18 +23765,18 @@ - 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. - jl16 - 2016-03-18T11:15:07Z - worm_development - WBls:0000717 - cysticercoid stage + 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. + jl16 + 2016-03-18T11:15:07Z + worm_development + WBls:0000717 + cysticercoid stage - 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 + 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 @@ -23779,21 +23785,21 @@ - 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. - jl16 - 2016-04-27T12:02:59Z - NEJ - newly emerged juveniles - worm_development - WBls:0000718 - newly excysted juveniles + 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. + jl16 + 2016-04-27T12:02:59Z + NEJ + newly emerged juveniles + worm_development + WBls:0000718 + newly excysted juveniles - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -23802,19 +23808,19 @@ - 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. - jl16 - 2016-04-27T12:56:49Z - worm_development - WBls:0000719 - juvenile fluke + 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. + jl16 + 2016-04-27T12:56:49Z + worm_development + WBls:0000719 + juvenile fluke - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -23823,20 +23829,20 @@ - 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. - jl16 - 2016-04-27T13:01:06Z - metacercariae - worm_development - WBls:0000720 - metacercarium + 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. + jl16 + 2016-04-27T13:01:06Z + metacercariae + worm_development + WBls:0000720 + metacercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -23844,22 +23850,22 @@ - 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. - jl16 - 2016-04-27T17:03:22Z - nematode adult intestinal phase - worm_development - WBls:0000721 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult intestinal stage + 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. + jl16 + 2016-04-27T17:03:22Z + nematode adult intestinal phase + worm_development + WBls:0000721 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult intestinal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -23867,22 +23873,22 @@ - 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. - jl16 - 2016-04-27T17:13:57Z - nematode adult lumenal phase - worm_development - WBls:0000722 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult lumenal stage + 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. + jl16 + 2016-04-27T17:13:57Z + nematode adult lumenal phase + worm_development + WBls:0000722 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult lumenal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -23891,18 +23897,18 @@ - Onchocerca embryonic life stage. - fr7 - 2017-06-09T10:22:55Z - worm_development - WBls:0000723 - Onchocerca embryonic life stage + Onchocerca embryonic life stage. + fr7 + 2017-06-09T10:22:55Z + worm_development + WBls:0000723 + Onchocerca embryonic life stage - Onchocerca embryonic life stage. - WB:fr + Onchocerca embryonic life stage. + WB:fr @@ -23911,20 +23917,20 @@ - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:54:14Z - OPL:0000017 - 3 hr somule - worm_development - WBls:0000724 - 3 hr schistosomulum + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:54:14Z + OPL:0000017 + 3 hr somule + worm_development + WBls:0000724 + 3 hr schistosomulum - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -23939,20 +23945,20 @@ - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:56:23Z - OPL:0000172 - 24 hr somule - worm_development - WBls:0000725 - 24 hr schistosomulum + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:56:23Z + OPL:0000172 + 24 hr somule + worm_development + WBls:0000725 + 24 hr schistosomulum - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -23961,18 +23967,18 @@ - Onchocerca post-embryonic life stage. - fr7 - 2017-06-09T10:23:56Z - worm_development - WBls:0000726 - Onchocerca post-embryonic life stage + Onchocerca post-embryonic life stage. + fr7 + 2017-06-09T10:23:56Z + worm_development + WBls:0000726 + Onchocerca post-embryonic life stage - Onchocerca post-embryonic life stage. - WB:fr + Onchocerca post-embryonic life stage. + WB:fr @@ -23987,18 +23993,18 @@ - 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. - fr7 - 2017-06-09T10:24:33Z - worm_development - WBls:0000727 - Onchocerca microfilaria (mammalian stage) + 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. + fr7 + 2017-06-09T10:24:33Z + worm_development + WBls:0000727 + Onchocerca microfilaria (mammalian stage) - 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 + 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 @@ -24013,18 +24019,18 @@ - 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. - fr7 - 2017-06-09T10:28:52Z - worm_development - WBls:0000728 - Onchocerca microfilaria (vector stage) + 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. + fr7 + 2017-06-09T10:28:52Z + worm_development + WBls:0000728 + Onchocerca microfilaria (vector stage) - 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 + 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 @@ -24033,18 +24039,18 @@ - Adult female Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:28:29Z - worm_development - WBls:0000729 - Strongyloides free living adult female + Adult female Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:28:29Z + worm_development + WBls:0000729 + Strongyloides free living adult female - Adult female Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult female Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -24059,18 +24065,18 @@ - L1 larvae that develop from the microfilariae in the arthropod vector. - fr7 - 2017-06-09T10:35:04Z - worm_development - WBls:0000730 - Onchocerca L1 larva + L1 larvae that develop from the microfilariae in the arthropod vector. + fr7 + 2017-06-09T10:35:04Z + worm_development + WBls:0000730 + Onchocerca L1 larva - L1 larvae that develop from the microfilariae in the arthropod vector. - WB:fr + L1 larvae that develop from the microfilariae in the arthropod vector. + WB:fr @@ -24085,18 +24091,18 @@ - L2 larvae that develops from the L1 larvae in the arthropod vector. - fr7 - 2017-06-09T10:40:31Z - worm_development - WBls:0000731 - Onchocerca L2 larva + L2 larvae that develops from the L1 larvae in the arthropod vector. + fr7 + 2017-06-09T10:40:31Z + worm_development + WBls:0000731 + Onchocerca L2 larva - L2 larvae that develops from the L1 larvae in the arthropod vector. - WB:fr + L2 larvae that develops from the L1 larvae in the arthropod vector. + WB:fr @@ -24111,18 +24117,18 @@ - 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. - fr7 - 2017-06-09T10:45:40Z - worm_development - WBls:0000732 - Onchocerca L3 larva (vector stage) + 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. + fr7 + 2017-06-09T10:45:40Z + worm_development + WBls:0000732 + Onchocerca L3 larva (vector stage) - 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 + 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 @@ -24137,18 +24143,18 @@ - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - fr7 - 2017-06-09T10:48:52Z - worm_development - WBls:0000733 - Onchocerca L3 larva (mammalian stage) + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + fr7 + 2017-06-09T10:48:52Z + worm_development + WBls:0000733 + Onchocerca L3 larva (mammalian stage) - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - WB:fr + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + WB:fr @@ -24157,18 +24163,18 @@ - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - fr7 - 2017-06-09T10:50:17Z - worm_development - WBls:0000734 - Onchocerca L3 larva in vitro cultured D1 + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + fr7 + 2017-06-09T10:50:17Z + worm_development + WBls:0000734 + Onchocerca L3 larva in vitro cultured D1 - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + WB:fr @@ -24183,18 +24189,18 @@ - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - fr7 - 2017-06-09T10:51:09Z - worm_development - WBls:0000735 - Onchocerca L3 larva in vitro cultured D2 + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + fr7 + 2017-06-09T10:51:09Z + worm_development + WBls:0000735 + Onchocerca L3 larva in vitro cultured D2 - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + WB:fr @@ -24209,18 +24215,18 @@ - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - fr7 - 2017-06-09T10:53:33Z - worm_development - WBls:0000736 - Onchocerca L3 larva in vitro cultured D3 + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + fr7 + 2017-06-09T10:53:33Z + worm_development + WBls:0000736 + Onchocerca L3 larva in vitro cultured D3 - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + WB:fr @@ -24235,18 +24241,18 @@ - L4 larvae that develop from L3 larvae in the mammalian host. - fr7 - 2017-06-09T10:59:07Z - worm_development - WBls:0000737 - Onchocerca L4 larva + L4 larvae that develop from L3 larvae in the mammalian host. + fr7 + 2017-06-09T10:59:07Z + worm_development + WBls:0000737 + Onchocerca L4 larva - L4 larvae that develop from L3 larvae in the mammalian host. - WB:fr + L4 larvae that develop from L3 larvae in the mammalian host. + WB:fr @@ -24255,18 +24261,18 @@ - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - fr7 - 2017-06-09T11:01:46Z - worm_development - WBls:0000738 - Onchocerca L4 larva in vitro cultured + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + fr7 + 2017-06-09T11:01:46Z + worm_development + WBls:0000738 + Onchocerca L4 larva in vitro cultured - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - WB:fr + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + WB:fr @@ -24281,18 +24287,18 @@ - Adult male that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:02:24Z - worm_development - WBls:0000739 - Onchocerca adult male + Adult male that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:02:24Z + worm_development + WBls:0000739 + Onchocerca adult male - Adult male that has developed from L4 larvae in the mammalian host. - WB:fr + Adult male that has developed from L4 larvae in the mammalian host. + WB:fr @@ -24307,18 +24313,18 @@ - Adult female that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:03:10Z - worm_development - WBls:0000740 - Onchocerca adult female + Adult female that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:03:10Z + worm_development + WBls:0000740 + Onchocerca adult female - Adult female that has developed from L4 larvae in the mammalian host. - WB:fr + Adult female that has developed from L4 larvae in the mammalian host. + WB:fr @@ -24327,18 +24333,18 @@ - Any developmental stage of a nematode of the Onchocerca genus. - fr7 - 2017-06-09T10:18:45Z - worm_development - WBls:0000741 - Onchocerca life stage + Any developmental stage of a nematode of the Onchocerca genus. + fr7 + 2017-06-09T10:18:45Z + worm_development + WBls:0000741 + Onchocerca life stage - Any developmental stage of a nematode of the Onchocerca genus. - WB:fr + Any developmental stage of a nematode of the Onchocerca genus. + WB:fr @@ -24347,18 +24353,18 @@ - Adult male Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:34:19Z - worm_development - WBls:0000742 - Strongyloides free living adult male + Adult male Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:34:19Z + worm_development + WBls:0000742 + Strongyloides free living adult male - Adult male Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult male Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -24368,19 +24374,19 @@ - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - jl16 - 2015-11-25T11:38:04Z - post free-living L1 - worm_development - WBls:0000793 - Strongyloides post free-living L1 + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + jl16 + 2015-11-25T11:38:04Z + post free-living L1 + worm_development + WBls:0000793 + Strongyloides post free-living L1 - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + WB:jl @@ -24390,19 +24396,19 @@ - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - jl16 - 2015-11-25T11:39:14Z - post parasitic L1 - worm_development - WBls:0000794 - Strongyloides post parasitic L1 + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + jl16 + 2015-11-25T11:39:14Z + post parasitic L1 + worm_development + WBls:0000794 + Strongyloides post parasitic L1 - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + WB:jl @@ -24411,19 +24417,19 @@ - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - jl16 - 2015-11-25T11:55:54Z - post parasitic L3 - worm_development - WBls:0000795 - Strongyloides post parasitic L3 + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + jl16 + 2015-11-25T11:55:54Z + post parasitic L3 + worm_development + WBls:0000795 + Strongyloides post parasitic L3 - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + WB:jl @@ -24433,19 +24439,19 @@ - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - jl16 - 2015-11-25T11:57:47Z - free-living L3 - worm_development - WBls:0000796 - Strongyloides post free-living L3 + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + jl16 + 2015-11-25T11:57:47Z + free-living L3 + worm_development + WBls:0000796 + Strongyloides post free-living L3 - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + WB:jl @@ -24466,19 +24472,19 @@ - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - danielaraciti - 2016-10-19T10:13:23Z - 11-days post-L4 adult hermaphrodite - worm_development - WBls:0000797 - 11-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + danielaraciti + 2016-10-19T10:13:23Z + 11-days post-L4 adult hermaphrodite + worm_development + WBls:0000797 + 11-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - WB:dr + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + WB:dr @@ -24499,19 +24505,19 @@ - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - danielaraciti - 2016-10-19T10:13:47Z - 12-days post-L4 adult hermaphrodite - worm_development - WBls:0000798 - 12-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + danielaraciti + 2016-10-19T10:13:47Z + 12-days post-L4 adult hermaphrodite + worm_development + WBls:0000798 + 12-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - WB:dr + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + WB:dr @@ -24532,19 +24538,19 @@ - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - danielaraciti - 2016-10-19T10:14:11Z - 13-days post-L4 adult hermaphrodite - worm_development - WBls:0000799 - 13-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + danielaraciti + 2016-10-19T10:14:11Z + 13-days post-L4 adult hermaphrodite + worm_development + WBls:0000799 + 13-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - WB:dr + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + WB:dr @@ -24565,19 +24571,19 @@ - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - danielaraciti - 2016-10-19T10:14:40Z - 14-days post-L4 adult hermaphrodite - worm_development - WBls:0000800 - 14-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + danielaraciti + 2016-10-19T10:14:40Z + 14-days post-L4 adult hermaphrodite + worm_development + WBls:0000800 + 14-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - WB:dr + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + WB:dr @@ -24598,20 +24604,20 @@ - The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. - danielaraciti - 2017-11-14T10:14:40Z - worm_development - WBls:0000801 - newly hatched L1 larval stage Ce + The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. + danielaraciti + 2017-11-14T10:14:40Z + worm_development + WBls:0000801 + newly hatched L1 larval stage Ce - 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 + 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 @@ -24626,20 +24632,20 @@ - The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. - danielaraciti - 2017-11-14T10:15:40Z - L1 diapause - worm_development - WBls:0000802 - L1 arrest Ce + The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. + danielaraciti + 2017-11-14T10:15:40Z + L1 diapause + worm_development + WBls:0000802 + L1 arrest Ce - 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 + 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 @@ -24664,16 +24670,16 @@ - A C. elegans life stage that occurs during embryogenesis - worm_development - WBls:0000803 + A C. elegans life stage that occurs during embryogenesis + worm_development + WBls:0000803 C. elegans life stage occurring during embryogenesis - A C. elegans life stage that occurs during embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs during embryogenesis + WB:WBPerson2987 @@ -24698,16 +24704,16 @@ - A C. elegans life stage that occurs after embryogenesis - worm_development - WBls:0000804 + A C. elegans life stage that occurs after embryogenesis + worm_development + WBls:0000804 C. elegans life stage occurring post embryogenesis - A C. elegans life stage that occurs after embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs after embryogenesis + WB:WBPerson2987 @@ -24732,16 +24738,16 @@ - A C. elegans life stage that occurs during the elongating embryo life stage - worm_development - WBls:0000805 + A C. elegans life stage that occurs during the elongating embryo life stage + worm_development + WBls:0000805 C. elegans life stage occurring during elongating embryo - A C. elegans life stage that occurs during the elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the elongating embryo life stage + WB:WBPerson2987 @@ -24766,16 +24772,16 @@ - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - worm_development - WBls:0000806 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + worm_development + WBls:0000806 C. elegans life stage occurring during 1.5-fold embryo - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + WB:WBPerson2987 @@ -24800,16 +24806,16 @@ - A C. elegans life stage that occurs during the 2-fold embryo life stage - worm_development - WBls:0000807 + A C. elegans life stage that occurs during the 2-fold embryo life stage + worm_development + WBls:0000807 C. elegans life stage occurring during 2-fold embryo - A C. elegans life stage that occurs during the 2-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 2-fold embryo life stage + WB:WBPerson2987 @@ -24834,16 +24840,16 @@ - A C. elegans life stage that occurs during the 3-fold embryo life stage - worm_development - WBls:0000808 + A C. elegans life stage that occurs during the 3-fold embryo life stage + worm_development + WBls:0000808 C. elegans life stage occurring during 3-fold embryo - A C. elegans life stage that occurs during the 3-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 3-fold embryo life stage + WB:WBPerson2987 @@ -24868,16 +24874,16 @@ - A C. elegans life stage that occurs during the bean embryo life stage - worm_development - WBls:0000809 + A C. elegans life stage that occurs during the bean embryo life stage + worm_development + WBls:0000809 C. elegans life stage occurring during bean embryo - A C. elegans life stage that occurs during the bean embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the bean embryo life stage + WB:WBPerson2987 @@ -24902,16 +24908,16 @@ - A C. elegans life stage that occurs during the comma embryo life stage - worm_development - WBls:0000810 + A C. elegans life stage that occurs during the comma embryo life stage + worm_development + WBls:0000810 C. elegans life stage occurring during comma embryo - A C. elegans life stage that occurs during the comma embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the comma embryo life stage + WB:WBPerson2987 @@ -24936,16 +24942,16 @@ - A C. elegans life stage that occurs during the fully-elongating embryo life stage - worm_development - WBls:0000811 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + worm_development + WBls:0000811 C. elegans life stage occurring during fully-elongated embryo - A C. elegans life stage that occurs during the fully-elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + WB:WBPerson2987 @@ -24970,16 +24976,16 @@ - A C. elegans life stage that occurs during the proliferating embryo life stage - worm_development - WBls:0000812 + A C. elegans life stage that occurs during the proliferating embryo life stage + worm_development + WBls:0000812 C. elegans life stage occurring during proliferating embryo - A C. elegans life stage that occurs during the proliferating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the proliferating embryo life stage + WB:WBPerson2987 @@ -25004,16 +25010,16 @@ - A C. elegans life stage that occurs during the blastula embryo life stage - worm_development - WBls:0000813 + A C. elegans life stage that occurs during the blastula embryo life stage + worm_development + WBls:0000813 C. elegans life stage occurring during blastula embryo - A C. elegans life stage that occurs during the blastula embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the blastula embryo life stage + WB:WBPerson2987 @@ -25038,16 +25044,16 @@ - A C. elegans life stage that occurs during the gastrulating embryo life stage - worm_development - WBls:0000814 + A C. elegans life stage that occurs during the gastrulating embryo life stage + worm_development + WBls:0000814 C. elegans life stage occurring during gastrulation - A C. elegans life stage that occurs during the gastrulating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the gastrulating embryo life stage + WB:WBPerson2987 @@ -25072,16 +25078,16 @@ - A C. elegans life stage that occurs during the enclosing embryo life stage - worm_development - WBls:0000815 + A C. elegans life stage that occurs during the enclosing embryo life stage + worm_development + WBls:0000815 C. elegans life stage occurring during enclosing embryo - A C. elegans life stage that occurs during the enclosing embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the enclosing embryo life stage + WB:WBPerson2987 @@ -25106,16 +25112,16 @@ - A C. elegans life stage that occurs during the adult life stage - worm_development - WBls:0000816 + A C. elegans life stage that occurs during the adult life stage + worm_development + WBls:0000816 C. elegans life stage occurring during adulthood - A C. elegans life stage that occurs during the adult life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the adult life stage + WB:WBPerson2987 @@ -25140,16 +25146,16 @@ - A C. elegans life stage that occurs during the larval life stage - worm_development - WBls:0000817 + A C. elegans life stage that occurs during the larval life stage + worm_development + WBls:0000817 C. elegans life stage occurring during larval stage - A C. elegans life stage that occurs during the larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the larval life stage + WB:WBPerson2987 @@ -25174,16 +25180,16 @@ - A C. elegans life stage that occurs during the L1 larval life stage - worm_development - WBls:0000818 + A C. elegans life stage that occurs during the L1 larval life stage + worm_development + WBls:0000818 C. elegans life stage occurring during L1 larval stage - A C. elegans life stage that occurs during the L1 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L1 larval life stage + WB:WBPerson2987 @@ -25208,16 +25214,16 @@ - A C. elegans life stage that occurs during the L2 larval life stage - worm_development - WBls:0000819 + A C. elegans life stage that occurs during the L2 larval life stage + worm_development + WBls:0000819 C. elegans life stage occurring during L2 larval stage - A C. elegans life stage that occurs during the L2 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L2 larval life stage + WB:WBPerson2987 @@ -25242,16 +25248,16 @@ - A C. elegans life stage that occurs during the L3 larval life stage - worm_development - WBls:0000820 + A C. elegans life stage that occurs during the L3 larval life stage + worm_development + WBls:0000820 C. elegans life stage occurring during L3 larval stage - A C. elegans life stage that occurs during the L3 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L3 larval life stage + WB:WBPerson2987 @@ -25276,16 +25282,16 @@ - A C. elegans life stage that occurs during the L4 larval life stage - worm_development - WBls:0000821 + A C. elegans life stage that occurs during the L4 larval life stage + worm_development + WBls:0000821 C. elegans life stage occurring during L4 larval stage - A C. elegans life stage that occurs during the L4 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L4 larval life stage + WB:WBPerson2987 @@ -25294,17 +25300,17 @@ - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - worm_development - WBls:0000822 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + worm_development + WBls:0000822 C. elegans life stage by minutes post first cleavage - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - WB:WBPaper00000653 - WB:WBPerson2987 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + WB:WBPaper00000653 + WB:WBPerson2987 @@ -25313,16 +25319,16 @@ - C. elegans life stage classified by the number of cells in the organism. - worm_development - WBls:0000823 + C. elegans life stage classified by the number of cells in the organism. + worm_development + WBls:0000823 C. elegans life stage by number of cells - C. elegans life stage classified by the number of cells in the organism. - WB:WBPerson2987 + C. elegans life stage classified by the number of cells in the organism. + WB:WBPerson2987 @@ -25331,16 +25337,16 @@ - C. elegans life stage that occurs during a larval molt - worm_development - WBls:0000824 + C. elegans life stage that occurs during a larval molt + worm_development + WBls:0000824 C. elegans life stage occurring during larval molt - C. elegans life stage that occurs during a larval molt - WB:WBPerson2987 + C. elegans life stage that occurs during a larval molt + WB:WBPerson2987 @@ -25349,16 +25355,16 @@ - A life stage of the nematode Caenorhabditis elegans - worm_development - WBls:0000825 + A life stage of the nematode Caenorhabditis elegans + worm_development + WBls:0000825 C. elegans life stage - A life stage of the nematode Caenorhabditis elegans - WB:WBPerson2987 + A life stage of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -25366,17 +25372,17 @@ - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - worm_development - WBls:0000826 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + worm_development + WBls:0000826 obsolete set of worm life stages true - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - WB:WBPerson2987 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -25391,17 +25397,17 @@ - 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. - worm_development - WBls:0000827 + 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. + worm_development + WBls:0000827 post dauer stage Ce - 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 + 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 @@ -25416,25 +25422,25 @@ - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PDL4 - worm_development - WBls:0000828 - "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)." + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PDL4 + worm_development + WBls:0000828 + "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)." post dauer L4 stage Ce - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -25444,21 +25450,21 @@ - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - worm_development - WBls:0000829 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + worm_development + WBls:0000829 post dauer adult stage Ce - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 - + diff --git a/wbls-full.json b/wbls-full.json index adca7e9..f7ba5d0 100644 --- a/wbls-full.json +++ b/wbls-full.json @@ -1,47252 +1,35131 @@ { - "graphs": [ - { - "domainRangeAxioms": [ - { - "allValuesFromEdges": [ - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000002", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000002" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000020" - } - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002233" - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000034" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000079" - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000056", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002258", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002506", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002566", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000062", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000063", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000057", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002222", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002501", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000085", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000034" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000087", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000023" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000091", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000016" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002202", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002215", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002018", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002211", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002334", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019000", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/PATO_0000001" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002434", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002448", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002449", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002450", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002595", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0011002", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002254", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002384", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ] - }, - { - "predicateId": "http://purl.obolibrary.org/obo/RO_0000053", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000020" - ] - }, - { - "predicateId": "http://purl.obolibrary.org/obo/RO_0000086", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000019" - ] + "graphs" : [ { + "id" : "http://purl.obolibrary.org/obo/wbls/wbls-full.json", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000700", + "val" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "pred" : "http://purl.org/dc/elements/1.1/description", + "val" : "Ontology about the development and life stages of the C. elegans" + }, { + "pred" : "http://purl.org/dc/elements/1.1/title", + "val" : "C. elegans Development Ontology" + }, { + "pred" : "http://purl.org/dc/terms/license", + "val" : "http://creativecommons.org/licenses/by/4.0/" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", + "val" : "OBO-Edit 2.2-rc1" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#date", + "val" : "15:11:2017 12:24" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#default-namespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", + "val" : "1.2" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#saved-by", + "val" : "chris-grove" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Version: 1.04" + }, { + "pred" : "http://www.w3.org/2002/07/owl#versionInfo", + "val" : "2023-04-11" + } ], + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2023-04-11/wbls-full.json" + }, + "nodes" : [ { + "id" : "http://purl.obolibrary.org/obo/BFO_0000002", + "lbl" : "continuant", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." } - ], - "edges": [ - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000002", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000002", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000004", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000004", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/CARO_0030000" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000015", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0003674" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000015", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0008150" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000016", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000017", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000017", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/PATO_0000001" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000051", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000051", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002180" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000062", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002087" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000062", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002404" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000063", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000063", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002090" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000063", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "obj": "http://purl.obolibrary.org/obo/CARO_0030000", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/CARO_0000000" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0003674", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0003824" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0003824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0016740" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0016740", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0016772" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0016772", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0016301" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000056", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000056", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002352" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000057", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000056" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000057", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002233" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000057", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002333" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000085", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000086", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000087", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000092", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002013", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002014" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002013", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002015" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002017", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002013" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002017", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002025" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002018", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002017" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002022", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002023" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002022", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002024" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002086", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002087", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002405" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002090", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002087" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002090", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002412" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002131", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002131", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002180", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002018" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002203", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002202" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002212" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002578" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0012012" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002212", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002212", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002630" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002213", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002213", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002629" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002215", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002216", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002215" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002222", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002222", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002086" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002255", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002254" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002258", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002202" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002258", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002254" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002263", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002263", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004034" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002263", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004035" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002431" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004032" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004033" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002286", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002258" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002286", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002203" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002286", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002255" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002304", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002305", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002212" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002314", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002323", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002324", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002258" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002324", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002384" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002216" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002329" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002333" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002352" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002431" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002584" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004031" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002333", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002013" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002022" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002335" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002336" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002335", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002212" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002335", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002014" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002336", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002336", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002015" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002352", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002233" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002384", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002286" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002384", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002385" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002384", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002387" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002385", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002255" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002387", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002203" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002387", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002388" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002388", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002203" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002404", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002405" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002501" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002506" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002595" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002608" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0019000" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002404" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002304" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002305" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002412" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0012011" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002412", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002405" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002412", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002578" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002418", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002418", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004046" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002418", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004047" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002427", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002427", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002334" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002427", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002404" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002428", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002429" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002428", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002430" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002431", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002431", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002434", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002436" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002436", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002447" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002436", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002448" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002448", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002449" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002448", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002450" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002464", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002563" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002216" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002431" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002596" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002501", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002501", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002427" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002502", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002314" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002506", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002559" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002506", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002566" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002563", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002564" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002564", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002481" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002566", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002559" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002566", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0011002" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002578", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002022" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002578", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002629" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002578", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002630" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002595", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002500" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002595", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002584" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002596", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002597" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002596", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002598" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002608", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002500" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002629", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002024" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002630", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002023" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004032", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004034" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004033", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004035" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004046", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002305" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004047", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002304" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0011002", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002448" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0012011", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0012012" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0012012", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0012012", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0019000", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0019001" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0019000", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0019002" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000825" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000006", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000007", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000008", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000009", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000011", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000012", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000025", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000028", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000032", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000036", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000073" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000039", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000056" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000057" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000046", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000052", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000064", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000065", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000066", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000067", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000069", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000070", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000071", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000072", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000074", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000101" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000704" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000077", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000079", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000080", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000082", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000084", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000086", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000087", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000088", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000090", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000094", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000095", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000100", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000001" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000059" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000076" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000102" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000105" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000741" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000106" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000664" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000679" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000111", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000112", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000113", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000114", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000115", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000116", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000117", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000118", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000119", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000120", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000121", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000122", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000123", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000124", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000125", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000126", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000127", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000128", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000129", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000130", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000131", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000132", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000133", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000134", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000135", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000136", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000137", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000138", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000139", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000140", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000141", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000142", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000143", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000144", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000145", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000146", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000147", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000148", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000149", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000150", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000151", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000152", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000153", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000154", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000155", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000156", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000157", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000158", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000159", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000160", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000161", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000162", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000163", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000164", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000165", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000166", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000167", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000168", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000169", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000170", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000171", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000172", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000173", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000174", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000175", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000176", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000177", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000178", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000179", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000180", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000181", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000182", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000183", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000184", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000185", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000186", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000187", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000188", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000189", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000190", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000191", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000192", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000193", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000194", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000195", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000196", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000197", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000198", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000199", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000200", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000201", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000202", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000203", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000204", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000205", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000206", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000207", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000208", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000209", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000210", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000211", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000212", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000213", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000214", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000215", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000216", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000217", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000218", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000219", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000220", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000221", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000222", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000223", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000224", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000225", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000226", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000227", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000228", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000229", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000230", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000231", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000232", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000233", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000234", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000235", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000236", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000237", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000238", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000239", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000240", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000241", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000242", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000243", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000244", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000245", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000246", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000247", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000248", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000249", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000250", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000251", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000252", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000253", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000254", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000255", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000256", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000257", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000258", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000259", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000260", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000261", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000262", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000263", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000264", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000265", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000266", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000267", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000268", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000269", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000270", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000271", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000272", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000273", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000274", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000275", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000276", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000277", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000278", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000279", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000280", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000281", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000282", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000283", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000284", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000285", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000286", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000287", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000288", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000289", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000290", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000291", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000292", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000293", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000294", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000295", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000296", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000297", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000298", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000299", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000300", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000301", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000302", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000303", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000304", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000305", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000306", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000307", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000308", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000309", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000310", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000311", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000312", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000313", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000314", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000315", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000316", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000317", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000318", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000319", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000320", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000321", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000322", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000323", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000324", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000325", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000326", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000327", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000328", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000329", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000330", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000331", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000332", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000333", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000334", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000335", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000336", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000337", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000338", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000339", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000340", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000341", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000342", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000343", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000344", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000345", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000346", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000347", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000348", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000349", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000350", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000351", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000352", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000353", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000354", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000355", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000356", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000357", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000358", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000359", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000360", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000361", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000362", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000363", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000364", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000365", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000366", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000367", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000368", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000369", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000370", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000371", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000372", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000373", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000374", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000375", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000376", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000377", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000378", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000379", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000380", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000381", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000382", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000383", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000384", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000385", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000386", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000387", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000388", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000389", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000390", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000391", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000392", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000393", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000394", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000395", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000396", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000397", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000398", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000399", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000400", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000401", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000402", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000403", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000404", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000405", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000406", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000407", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000408", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000409", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000410", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000411", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000412", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000413", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000414", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000415", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000416", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000417", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000418", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000419", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000420", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000421", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000422", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000423", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000424", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000425", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000426", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000427", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000428", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000429", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000430", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000431", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000432", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000433", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000434", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000435", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000436", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000437", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000438", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000439", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000440", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000441", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000442", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000443", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000444", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000445", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000446", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000447", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000448", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000449", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000450", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000451", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000452", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000453", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000454", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000455", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000456", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000457", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000458", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000459", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000460", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000461", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000462", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000463", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000464", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000465", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000466", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000467", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000468", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000469", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000470", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000471", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000472", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000473", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000474", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000475", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000476", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000477", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000478", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000479", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000480", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000481", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000482", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000483", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000484", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000485", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000486", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000487", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000488", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000489", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000490", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000491", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000492", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000493", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000494", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000495", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000496", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000497", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000498", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000499", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000500", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000501", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000502", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000503", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000504", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000505", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000506", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000507", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000508", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000509", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000510", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000511", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000512", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000513", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000514", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000515", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000516", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000517", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000518", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000519", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000520", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000521", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000522", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000523", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000524", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000525", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000526", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000527", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000528", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000529", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000530", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000531", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000532", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000533", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000534", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000535", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000536", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000537", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000538", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000539", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000540", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000541", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000542", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000543", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000544", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000545", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000546", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000547", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000548", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000549", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000550", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000551", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000552", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000553", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000554", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000555", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000556", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000557", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000558", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000559", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000560", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000561", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000562", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000563", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000564", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000565", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000566", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000567", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000568", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000569", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000570", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000571", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000572", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000573", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000574", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000575", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000576", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000577", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000578", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000579", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000580", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000581", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000582", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000583", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000584", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000585", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000586", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000587", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000588", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000589", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000590", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000591", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000592", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000593", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000594", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000595", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000596", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000597", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000598", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000599", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000600", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000601", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000602", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000603", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000604", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000605", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000606", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000607", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000608", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000609", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000610", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000611", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000612", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000613", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000614", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000615", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000616", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000617", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000618", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000619", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000620", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000621", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000622", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000623", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000624", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000625", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000626", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000627", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000628", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000629", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000630", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000631", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000632", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000633", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000634", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000635", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000636", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000637", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000638", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000639", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000640", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000641", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000642", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000643", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000644", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000645", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000646", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000647", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000648", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000649", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000650", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000651", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000652", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000653", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000654", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000655", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000656", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000657", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000658", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000659", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000660", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000661", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000663", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000110" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000667" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000668" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000669", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000670", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000671", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000672", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000673", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000675", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000795" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000729" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000742" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000683", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000684", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000685", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000686", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000687", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000688", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000689", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000690", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000691", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000693", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000694", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000695", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000696", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000697", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000698", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000699", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000700", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000701", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000702", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000705" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000711" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000712" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000708", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000724" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000706" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000707" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000708" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000718" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000719" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000720" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000713" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000716" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000723", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000724", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000727", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000728", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000730", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000731", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000732", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000734" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000734", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000735", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000738" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000723" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000726" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000797", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000798", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000799", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000800", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000801", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000805" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000811" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000812" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000816" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000817" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000806" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000807" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000808" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000809" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000810" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000813" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000814" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000815" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000818" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000819" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000820" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000821" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000824" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000819", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000820", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000002" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000669" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000803" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000804" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000822" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000823" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000003", + "lbl" : "occurrent", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An entity that has temporal parts and that happens, unfolds or develops through time." } - ], - "id": "http://purl.obolibrary.org/obo/wbls/wbls-full.json", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000700", - "val": "http://purl.obolibrary.org/obo/WBls_0000075" - }, - { - "pred": "http://purl.org/dc/elements/1.1/description", - "val": "Ontology about the development and life stages of the C. elegans" - }, - { - "pred": "http://purl.org/dc/elements/1.1/title", - "val": "C. elegans Development Ontology" - }, - { - "pred": "http://purl.org/dc/terms/license", - "val": "http://creativecommons.org/licenses/by/4.0/" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", - "val": "OBO-Edit 2.2-rc1" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#date", - "val": "15:11:2017 12:24" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#default-namespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", - "val": "1.2" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#saved-by", - "val": "chris-grove" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Version: 1.04" - }, - { - "pred": "http://www.w3.org/2002/07/owl#versionInfo", - "val": "2023-01-03" - } - ], - "version": "http://purl.obolibrary.org/obo/wbls/releases/2023-01-03/wbls-full.json" - }, - "nodes": [ - { - "id": "http://purl.obolibrary.org/obo/BFO_0000002", - "lbl": "continuant", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000003", - "lbl": "occurrent", - "meta": { - "definition": { - "val": "An entity that has temporal parts and that happens, unfolds or develops through time." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000004", - "lbl": "independent continuant", - "meta": { - "definition": { - "val": "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000015", - "lbl": "process", - "meta": { - "definition": { - "val": "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000017", - "lbl": "realizable entity", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000020", - "lbl": "specifically dependent continuant", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000023", - "lbl": "role", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000040", - "lbl": "material entity", - "meta": { - "definition": { - "val": "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000050", - "lbl": "part_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "is part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my brain is part of my body (continuant parthood, two material entities)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this day is part of this year (occurrent parthood)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "part_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000002" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000003" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000020" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000031" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "part_of" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Submissions:PartOf" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://www.obofoundry.org/ro/#OBO_REL:part_of" - } - ], - "definition": { - "val": "a core relation that holds between a part and its whole" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_gp2term", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ], - "xrefs": [ - { - "val": "BFO:0000050" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000051", - "lbl": "has part", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "has part" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my body has part my brain (continuant parthood, two material entities)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this year has part this day (occurrent parthood)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_part" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "a core relation that holds between a whole and its part" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000062", - "lbl": "preceded_by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "preceded by" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is preceded by" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "preceded_by" - }, - { - "pred": "http://purl.org/dc/elements/1.1/source", - "val": "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "preceded_by" - } - ], - "definition": { - "val": "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ], - "xrefs": [ - { - "val": "BFO:0000062" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000063", - "lbl": "precedes", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "precedes" - } - ], - "definition": { - "val": "x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/CARO_0000000", - "lbl": "anatomical entity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000412", - "val": "http://purl.obolibrary.org/obo/caro.owl" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0003674", - "lbl": "molecular_function", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "molecular process" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/IAO_0000115", - "lbl": "definition", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000122" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/IAO_0100001", - "lbl": "term replaced by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/PATO_0000001", - "lbl": "quality", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "quality (PATO)" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000052", - "lbl": "characteristic of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "inheres in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this fragility is a characteristic of this vase" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this red color is a characteristic of this apple" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "inheres_in" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "comments": [ - "Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing." - ], - "definition": { - "val": "a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000053", - "lbl": "has characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "bearer of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this apple is bearer of this red color" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this vase is bearer of this fragility" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "bearer_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is bearer of" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "Inverse of characteristic_of" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000056", - "lbl": "participates in", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "participates in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this blood clot participates in this blood coagulation" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this input material (or this output material) participates in this process" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this investigator participates in this investigation" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "participates_in" - } - ], - "definition": { - "val": "a relation between a continuant and a process, in which the continuant is somehow involved in the process" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000057", - "lbl": "has participant", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "has participant" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this blood coagulation has participant this blood clot" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this investigation has participant this investigator" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this process has participant this input material (or this output material)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "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." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_participant" - }, - { - "pred": "http://purl.org/dc/elements/1.1/source", - "val": "http://www.obofoundry.org/ro/#OBO_REL:has_participant" - } - ], - "definition": { - "val": "a relation between a process and a continuant, in which the continuant is somehow involved in the process" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000079", - "lbl": "function of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this catalysis function is a function of this enzyme" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "function_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is function of" - } - ], - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000080", - "lbl": "quality of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this red color is a quality of this apple" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A quality inheres in its bearer at all times for which the quality exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is quality of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "quality_of" - } - ], - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000081", - "lbl": "role of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this investigator role is a role of this person" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is role of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "role_of" - } - ], - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000085", - "lbl": "has function", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_function" - } - ], - "definition": { - "val": "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000086", - "lbl": "has quality", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this apple has quality this red color" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_quality" - } - ], - "definition": { - "val": "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000087", - "lbl": "has role", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this person has role this investigator role (more colloquially: this person has this role of investigator)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_role" - } - ], - "definition": { - "val": "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000091", - "lbl": "has disposition", - "meta": { - "definition": { - "val": "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000092", - "lbl": "disposition of", - "meta": { - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "inverse of has disposition" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002013", - "lbl": "has regulatory component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:30:46Z" - } - ], - "definition": { - "val": "A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002014", - "lbl": "has negative regulatory component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:31:01Z" - } - ], - "comments": [ - "By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'." - ], - "definition": { - "val": "A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002015", - "lbl": "has positive regulatory component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:31:17Z" - } - ], - "comments": [ - "By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'." - ], - "definition": { - "val": "A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002017", - "lbl": "has component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:44:33Z" - } - ], - "comments": [ - "A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B." - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002018", - "lbl": "has component process", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:49:21Z" - } - ], - "definition": { - "val": "w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002022", - "lbl": "directly regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-17T13:52:24Z" - } - ], - "comments": [ - "Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2." - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002023", - "lbl": "directly negatively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-17T13:52:38Z" - } - ], - "definition": { - "val": "Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1.", - "xrefs": [ - "GOC:dos" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002024", - "lbl": "directly positively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-17T13:52:47Z" - } - ], - "definition": { - "val": "Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1.", - "xrefs": [ - "GOC:dos" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002025", - "lbl": "has effector activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-22T14:14:36Z" - } - ], - "comments": [ - "This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations." - ], - "definition": { - "val": "A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.", - "xrefs": [ - "GOC:dos" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002086", - "lbl": "ends after", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - } - ], - "comments": [ - "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)" - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002087", - "lbl": "starts_at_end_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "starts_at_end_of" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "starts_at_end_of" - } - ], - "comments": [ - "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)" - ], - "xrefs": [ - { - "val": "RO:0002087" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002090", - "lbl": "immediately precedes", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "ends_at_start_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "meets" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002575", - "val": "http://purl.obolibrary.org/obo/BFO_0000063" - } - ], - "comments": [ - "X immediately_precedes_Y iff: end(X) simultaneous_with start(Y)" - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002131", - "lbl": "overlaps", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000424", - "val": "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "x overlaps y if and only if there exists some z such that x has part z and z part of y" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco", - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002180", - "lbl": "has component", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit." - }, - { - "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": "http://ontologydesignpatterns.org/wiki/Submissions:Componency" - } - ], - "definition": { - "val": "w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002202", - "lbl": "develops from", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Melissa Haendel" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Terry Meehan" - } - ], - "comments": [ - "This is the transitive form of the develops from relation" - ], - "definition": { - "val": "x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002203", - "lbl": "develops into", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Terry Meehan" - } - ], - "definition": { - "val": "inverse of develops from" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002211", - "lbl": "regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Hill" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Tanya Berardini" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "GO" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Regulation precludes parthood; the regulatory process may not be within the regulated process." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "regulates (processual)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000600", - "val": "false" - } - ], - "definition": { - "val": "p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002212", - "lbl": "negatively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "negatively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002211" - } - ], - "definition": { - "val": "p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002213", - "lbl": "positively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "positively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002211" - } - ], - "definition": { - "val": "p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002215", - "lbl": "capable of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "osteoclast SubClassOf 'capable of' some 'bone resorption'" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has function realized in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://www.ncbi.nlm.nih.gov/pubmed/20123131" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://www.ncbi.nlm.nih.gov/pubmed/21208450" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "For compatibility with BFO, this relation has a shortcut definition in which the expression \"capable of some P\" expands to \"bearer_of (some realized_by only P)\"." - } - ], - "definition": { - "val": "A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. " - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002216", - "lbl": "capable of part of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has function in" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" - } - ], - "definition": { - "val": "c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002222", - "lbl": "temporally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "https://en.wikipedia.org/wiki/Allen%27s_interval_algebra" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends." - }, - { - "pred": "http://purl.org/dc/terms/source", - "val": "https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1" - } - ], - "comments": [ - "A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations." - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002233", - "lbl": "has input", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "consumes" - } - ], - "definition": { - "val": "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco", - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002254", - "lbl": "has developmental contribution from", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong]" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has developmental contribution from y iff x has some part z such that z develops from y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002255", - "lbl": "developmentally contributes to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of has developmental contribution from" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002258", - "lbl": "developmentally preceded by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "false" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "In general you should not use this relation to make assertions - use one of the more specific relations below this one" - } - ], - "comments": [ - "This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from" - ], - "definition": { - "val": "Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002263", - "lbl": "acts upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of" - } - ], - "definition": { - "val": "c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002264", - "lbl": "acts upstream of or within", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within" - } - ], - "definition": { - "val": "c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ], - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "affects" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002286", - "lbl": "developmentally succeeded by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "Inverse of developmentally preceded by" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002304", - "lbl": "causally upstream of, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "pred": "http://purl.org/dc/terms/creator", - "val": "cjm" - } - ], - "comments": [ - "holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y" - ], - "definition": { - "val": "p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002305", - "lbl": "causally upstream of, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "pred": "http://purl.org/dc/terms/creator", - "val": "cjm" - } - ], - "definition": { - "val": "p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002314", - "lbl": "characteristic of part of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Because part_of is transitive, inheres in is a sub-relation of characteristic of part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "inheres in part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://www.ncbi.nlm.nih.gov/pubmed/20064205" - }, - { - "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": "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" - } - ], - "definition": { - "val": "q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002323", - "lbl": "mereotopologically related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "A mereological relationship or a topological relationship" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002324", - "lbl": "developmentally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development" - } - ], - "definition": { - "val": "A relationship that holds between entities participating in some developmental process (GO:0032502)" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002327", - "lbl": "enables", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "a particular instances of akt-2 enables some instance of protein kinase activity" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "catalyzes" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "executes" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is catalyzing" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is executing" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized." - } - ], - "definition": { - "val": "c enables p iff c is capable of p and c acts to execute p." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002328", - "lbl": "functionally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "This is a grouping relation that collects relations used for the purpose of connecting structure and function" - } - ], - "definition": { - "val": "A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002329", - "lbl": "part of structure that is capable of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "false" - } - ], - "definition": { - "val": "this relation holds between c and p when c is part of some c', and c' is capable of p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002331", - "lbl": "involved in", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "actively involved in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "enables part of" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Involved_in" - } - ], - "definition": { - "val": "c involved_in p if and only if c enables some process p', and p' is part of p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002333", - "lbl": "enabled by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of enables" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002334", - "lbl": "regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "regulated by (processual)" - } - ], - "definition": { - "val": "inverse of regulates" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002335", - "lbl": "negatively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of negatively regulates" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002336", - "lbl": "positively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of positively regulates" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002352", - "lbl": "input of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of has input" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259", - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002384", - "lbl": "has developmental potential involving", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002385", - "lbl": "has potential to developmentally contribute to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002387", - "lbl": "has potential to develop into", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has the potential to develop into y iff x develops into y or if x is capable of developing into y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002388", - "lbl": "has potential to directly develop into", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002404", - "lbl": "causally downstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of upstream of" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002405", - "lbl": "immediately causally downstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002407", - "lbl": "indirectly positively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "indirectly activates" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002579", - "val": "http://purl.obolibrary.org/obo/RO_0002213" - } - ], - "definition": { - "val": "p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002409", - "lbl": "indirectly negatively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "indirectly inhibits" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002579", - "val": "http://purl.obolibrary.org/obo/RO_0002212" - } - ], - "definition": { - "val": "p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002410", - "lbl": "causally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents.\n\nTo define causal relations in an activity-flow type network, we make use of 3 primitives:\n\n * Temporal: how do the intervals of the two occurrents relate? \n * Is the causal relation regulatory?\n * Is the influence positive or negative?\n\nThe first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified.\n\nFor the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule.\n\nFor the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral.\n\nEach of these 3 primitives can be composed to yield a cross-product of different relation types." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - } - ], - "definition": { - "val": "relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause.", - "xrefs": [ - "https://en.wikipedia.org/wiki/Causality" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002411", - "lbl": "causally upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002412", - "lbl": "immediately causally upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002575", - "val": "http://purl.obolibrary.org/obo/RO_0002411" - } - ], - "definition": { - "val": "p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002418", - "lbl": "causally upstream of or within", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "influences (processual)" - } - ], - "definition": { - "val": "p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q." - }, - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "affects" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002427", - "lbl": "causally downstream of or within", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "inverse of causally upstream of or within" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002428", - "lbl": "involved in regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "c involved in regulation of p if c is involved in some p' and p' regulates some p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002429", - "lbl": "involved in positive regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002428" - } - ], - "definition": { - "val": "c involved in regulation of p if c is involved in some p' and p' positively regulates some p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002430", - "lbl": "involved in negative regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002428" - } - ], - "definition": { - "val": "c involved in regulation of p if c is involved in some p' and p' negatively regulates some p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002431", - "lbl": "involved in or involved in regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "OWL does not allow defining object properties via a Union" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "involved in or reguates" - } - ], - "definition": { - "val": "c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002434", - "lbl": "interacts with", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Considering relabeling as 'pairwise interacts with'" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" - }, - { - "pred": "http://www.w3.org/2004/02/skos/core#closeMatch", - "val": "http://purl.obolibrary.org/obo/MI_0914" - } - ], - "definition": { - "val": "A relationship that holds between two entities in which the processes executed by the two entities are causally connected." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ], - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "in pairwise interaction with" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002436", - "lbl": "molecularly interacts with", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "binds" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "molecularly binds with" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ECO_0000353" - }, - { - "pred": "http://www.w3.org/2004/02/skos/core#closeMatch", - "val": "http://purl.obolibrary.org/obo/MI_0915" - } - ], - "definition": { - "val": "An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002447", - "lbl": "phosphorylates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Axiomatization to GO to be added later" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y." - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002448", - "lbl": "directly regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - } - ], - "definition": { - "val": "The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B." - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "molecularly controls" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002449", - "lbl": "directly negatively regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "directly inhibits" - } - ], - "definition": { - "val": "The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B." - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "molecularly decreases activity of" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002450", - "lbl": "directly positively regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "directly activates" - } - ], - "definition": { - "val": "The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B." - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "molecularly increases activity of" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002464", - "lbl": "helper property (not for use in curation)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning." - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002481", - "lbl": "is kinase activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002500", - "lbl": "causal agent in process", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "A relationship between a material entity and a process where the material entity has some causal role that influences the process" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002501", - "lbl": "causal relation between processes", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - } - ], - "definition": { - "val": "p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002502", - "lbl": "depends on", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/BFO_0000169" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002506", - "lbl": "causal relation between entities", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002559", - "lbl": "causally influenced by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "causally influenced by (entity-centric)" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002563", - "lbl": "interaction relation helper property", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002564", - "lbl": "molecular interaction relation helper property", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002566", - "lbl": "causally influences", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "causally influences (entity-centric)" - } - ], - "definition": { - "val": "The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size)." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002578", - "lbl": "directly regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "directly regulates (processual)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002575", - "val": "http://purl.obolibrary.org/obo/RO_0002211" - } - ], - "definition": { - "val": "p directly regulates q iff p is immediately causally upstream of q and p regulates q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002581", - "lbl": "is a defining property chain axiom", - "meta": { - "definition": { - "val": "If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002582", - "lbl": "is a defining property chain axiom where second argument is reflexive", - "meta": { - "definition": { - "val": "If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002584", - "lbl": "has part structure that is capable of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "gland SubClassOf 'has part structure that is capable of' some 'secretion by cell'" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002595", - "lbl": "causal relation between material entity and a process", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002596", - "lbl": "capable of regulating", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "pyrethroid -> growth" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Holds between c and p if and only if c is capable of some activity a, and a regulates p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002597", - "lbl": "capable of negatively regulating", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002598", - "lbl": "capable of positively regulating", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "renin -> arteriolar smooth muscle contraction" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Holds between c and p if and only if c is capable of some activity a, and a positively regulates p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002608", - "lbl": "process has causal agent", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Inverse of 'causal agent in process'" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002629", - "lbl": "directly positively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "directly positively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002578" - } - ], - "definition": { - "val": "p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002630", - "lbl": "directly negatively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "directly negatively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002578" - } - ], - "definition": { - "val": "p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004031", - "lbl": "enables subfunction", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-25T23:20:13Z" - } - ], - "definition": { - "val": "Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004032", - "lbl": "acts upstream of or within, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:49:30Z" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within,_positive_effect" - } - ], - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004033", - "lbl": "acts upstream of or within, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:49:51Z" - } - ], - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004034", - "lbl": "acts upstream of, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:53:14Z" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of,_positive_effect" - } - ], - "definition": { - "val": "c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004035", - "lbl": "acts upstream of, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:53:22Z" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of,_negative_effect" - } - ], - "definition": { - "val": "c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004046", - "lbl": "causally upstream of or within, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-03-13T23:55:05Z" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004047", - "lbl": "causally upstream of or within, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-03-13T23:55:19Z" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0011002", - "lbl": "regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - } - ], - "definition": { - "val": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0012011", - "lbl": "indirectly causally upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "pg" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2022-09-26T06:07:17Z" - } - ], - "definition": { - "val": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0012012", - "lbl": "indirectly regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "pg" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2022-09-26T06:08:01Z" - } - ], - "definition": { - "val": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0017001", - "lbl": "device utilizes material", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "A diagnostic testing device utilizes a specimen." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "https://orcid.org/0000-0001-9625-1899" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "https://orcid.org/0000-0003-2620-0345" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "See github ticket https://github.com/oborel/obo-relations/issues/497" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2021-11-08T12:00:00Z" - } - ], - "definition": { - "val": "X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y." - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "utilizes" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0019000", - "lbl": "regulates characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.org/dc/terms/contributor", - "val": "https://orcid.org/0000-0002-8688-6599" - } - ], - "definition": { - "val": "A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0019001", - "lbl": "positively regulates characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.org/dc/terms/contributor", - "val": "https://orcid.org/0000-0002-8688-6599" - } - ], - "definition": { - "val": "A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0019002", - "lbl": "negatively regulates characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.org/dc/terms/contributor", - "val": "https://orcid.org/0000-0002-8688-6599" - } - ], - "definition": { - "val": "A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000001", - "lbl": "free-living nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:42:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely outside of a host organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000002", - "lbl": "all stages Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "All C. elegans development stages, including embryo, larva and adult stage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000003", - "lbl": "embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000004", - "lbl": "proliferating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "proliferating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000005", - "lbl": "blastula embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "blastula embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000006", - "lbl": "1-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-cell embryo" - }, - { - "pred": "hasExactSynonym", - "val": "fertilized egg", - "xrefs": [ - "WB:dr" - ] - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000007", - "lbl": "2-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000008", - "lbl": "4-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000009", - "lbl": "28-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000010", - "lbl": "gastrulating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "gastrulating embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000011", - "lbl": "51-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000012", - "lbl": "88-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000013", - "lbl": "enclosing embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "enclosing embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000014", - "lbl": "late cleavage stage embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late cleavage stage embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000015", - "lbl": "elongating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "elongating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "mid embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000016", - "lbl": "bean embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "bean embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000017", - "lbl": "comma embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "comma embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000018", - "lbl": "1.5-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1.5-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000019", - "lbl": "2-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000020", - "lbl": "3-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000021", - "lbl": "fully-elongated embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "fully-elongated embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "morphogenetic stage" - }, - { - "pred": "hasExactSynonym", - "val": "pre-hatched embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000022", - "lbl": "postembryonic Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000023", - "lbl": "larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000024", - "lbl": "L1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000025", - "lbl": "L1-L2 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000026", - "lbl": "L1-L2 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000027", - "lbl": "L2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000028", - "lbl": "L2-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000029", - "lbl": "L2-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000030", - "lbl": "L2d-dauer lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000031", - "lbl": "L2d-dauer molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000032", - "lbl": "dauer larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A third stage larva specialized for dispersal and long term survival.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "dauer larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000033", - "lbl": "postdauer-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000034", - "lbl": "postdauer-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000035", - "lbl": "L3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000036", - "lbl": "L3-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000037", - "lbl": "L3-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000038", - "lbl": "L4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000039", - "lbl": "L4-adult lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000040", - "lbl": "L4-adult molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000041", - "lbl": "adult Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000042", - "lbl": "L1-L2 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000043", - "lbl": "L1-L2d molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000044", - "lbl": "L1-L2d lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000045", - "lbl": "L1-L2d ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000046", - "lbl": "L2d larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000047", - "lbl": "L2-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000048", - "lbl": "L2d-dauer ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000049", - "lbl": "L3-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000050", - "lbl": "L4-adult ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000051", - "lbl": "postdauer-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000052", - "lbl": "post dauer L3 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", - "xrefs": [ - "PMID:27417559", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL3" - }, - { - "pred": "hasExactSynonym", - "val": "dauer exit" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000053", - "lbl": "L2d-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000054", - "lbl": "L2d-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000055", - "lbl": "L2d-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000056", - "lbl": "adult male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an male animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000057", - "lbl": "adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000058", - "lbl": "pre-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "pre-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000059", - "lbl": "parasitic nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:44:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000060", - "lbl": "reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000061", - "lbl": "oocyte-laying stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "oocyte-laying stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000062", - "lbl": "post-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000063", - "lbl": "newly molted young adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 0-24 hours after L4-adult molt.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "newly molted young adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000064", - "lbl": "1-day post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-day post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000065", - "lbl": "2-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000066", - "lbl": "3-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000067", - "lbl": "4-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000068", - "lbl": "5-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000069", - "lbl": "4-7 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-7 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000070", - "lbl": "7-10 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-10 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000071", - "lbl": "8-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000072", - "lbl": "12-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000073", - "lbl": "L4 larva male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000074", - "lbl": "11-15 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-22T14:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000075", - "lbl": "worm life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of a worm", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000076", - "lbl": "Strongyloides life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:49:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Strongyloides developmental stage, including free-living and parasitic stages.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages Strongyloides" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000077", - "lbl": "Brugia sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000662" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "sheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia immature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "immature microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000079", - "lbl": "Brugia L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1" - }, - { - "pred": "hasExactSynonym", - "val": "L1 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000080", - "lbl": "Brugia L2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:30:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2" - }, - { - "pred": "hasExactSynonym", - "val": "L2 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000081", - "lbl": "Brugia L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3" - }, - { - "pred": "hasExactSynonym", - "val": "L3 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000082", - "lbl": "Brugia L4", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:38Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4" - }, - { - "pred": "hasExactSynonym", - "val": "L4 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000083", - "lbl": "Brugia adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:32:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000084", - "lbl": "14-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:15:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "E-cell has divided into Ea and Ep. Contains 14 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000085", - "lbl": "24-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:23:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fourth cleavage of the AB lineage. Contains 24 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000086", - "lbl": "44-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:25:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fifth cleavage of the AB lineage. Contains 44 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000087", - "lbl": "68-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:26:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Sixth cleavage of the AB lineage. Contains 68 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000088", - "lbl": "86-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:27:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Seventh cleavage of the AB lineage. Contains 86 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000089", - "lbl": "190-cells embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-15T13:19:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "P4 and M cells have finished migrating. Contains 190 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190-cells embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000090", - "lbl": "96-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-16T15:37:30Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000091", - "lbl": "Brugia life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T03:18:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Brugia developmental stage, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000092", - "lbl": "Brugia embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:48:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - }, - { - "pred": "hasExactSynonym", - "val": "embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000093", - "lbl": "Brugia postembryonic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:50:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic stage" - }, - { - "pred": "hasExactSynonym", - "val": "postembryonic Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000094", - "lbl": "Brugia early embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:55:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "early embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000095", - "lbl": "Brugia middle embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:59:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Proliferates from 100 cells to Lima bean stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "middle embryo" - }, - { - "pred": "hasExactSynonym", - "val": "middle embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000096", - "lbl": "Brugia late embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:00:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "From Lima bean to hatching.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000097", - "lbl": "Brugia larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:12:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000098", - "lbl": "Brugia L3i", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:23:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3i" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia vector-derived L3" - }, - { - "pred": "hasExactSynonym", - "val": "vector-derived L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "iL3" - }, - { - "pred": "hasRelatedSynonym", - "val": "infective L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000099", - "lbl": "Brugia post-infection L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:24:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-infection L3" - }, - { - "pred": "hasExactSynonym", - "val": "post-infection L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "piL3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000100", - "lbl": "Brugia young adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:37:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "young adult" - }, - { - "pred": "hasExactSynonym", - "val": "young adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000101", - "lbl": "Nematode life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:13:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in a nematode, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000102", - "lbl": "nematode embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "embryo nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode egg stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000103", - "lbl": "postembryonic nematode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:39Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a nematode that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000104", - "lbl": "nematode adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:18:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L5" - }, - { - "pred": "hasExactSynonym", - "val": "adult nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000105", - "lbl": "nematode larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:19:27Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins after hatching and ends when the nematode becomes adult.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000106", - "lbl": "L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000107", - "lbl": "L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L2 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000108", - "lbl": "L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:21:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L3 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000109", - "lbl": "L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:22:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L4 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000110", - "lbl": "sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:23:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000111", - "lbl": "16-18 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16-18 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000112", - "lbl": "1 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000113", - "lbl": "2 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000114", - "lbl": "3 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000115", - "lbl": "4 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000116", - "lbl": "5 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000117", - "lbl": "6 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000118", - "lbl": "7 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000119", - "lbl": "8 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000120", - "lbl": "9 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000121", - "lbl": "10 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000122", - "lbl": "11 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000123", - "lbl": "12 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000124", - "lbl": "13 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000125", - "lbl": "14 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000126", - "lbl": "15 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000127", - "lbl": "16 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000128", - "lbl": "17 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "17 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000129", - "lbl": "18 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "18 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000130", - "lbl": "19 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "19 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000131", - "lbl": "20 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000132", - "lbl": "21 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "21 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000133", - "lbl": "22 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "22 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000134", - "lbl": "23 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "23 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000135", - "lbl": "24 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000136", - "lbl": "25 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "25 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000137", - "lbl": "26 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "26 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000138", - "lbl": "27 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "27 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000139", - "lbl": "28 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000140", - "lbl": "29 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "29 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000141", - "lbl": "30 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "30 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000142", - "lbl": "31 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "31 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000143", - "lbl": "32 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "32 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000144", - "lbl": "33 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "33 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000145", - "lbl": "34 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "34 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000146", - "lbl": "35 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "35 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000147", - "lbl": "36 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "36 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000148", - "lbl": "37 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "37 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000149", - "lbl": "38 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "38 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000150", - "lbl": "39 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "39 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000151", - "lbl": "40 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "40 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000152", - "lbl": "41 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "41 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000153", - "lbl": "42 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "42 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000154", - "lbl": "43 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "43 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000155", - "lbl": "44 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000156", - "lbl": "45 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "45 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000157", - "lbl": "46 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "46 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000158", - "lbl": "47 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "47 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000159", - "lbl": "48 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "48 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000160", - "lbl": "49 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "49 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000161", - "lbl": "50 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "50 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000162", - "lbl": "51 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000163", - "lbl": "52 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "52 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000164", - "lbl": "53 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "53 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000165", - "lbl": "54 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "54 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000166", - "lbl": "55 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "55 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000167", - "lbl": "56 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "56 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000168", - "lbl": "57 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "57 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000169", - "lbl": "58 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "58 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000170", - "lbl": "59 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "59 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000171", - "lbl": "60 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "60 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000172", - "lbl": "61 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "61 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000173", - "lbl": "62 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "62 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000174", - "lbl": "63 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "63 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000175", - "lbl": "64 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "64 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000176", - "lbl": "65 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "65 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000177", - "lbl": "66 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "66 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000178", - "lbl": "67 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "67 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000179", - "lbl": "68 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000180", - "lbl": "69 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "69 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000181", - "lbl": "70 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "70 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000182", - "lbl": "71 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "71 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000183", - "lbl": "72 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "72 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000184", - "lbl": "73 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "73 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000185", - "lbl": "74 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "74 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000186", - "lbl": "75 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "75 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000187", - "lbl": "76 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "76 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000188", - "lbl": "77 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "77 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000189", - "lbl": "78 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "78 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000190", - "lbl": "79 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "79 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000191", - "lbl": "80 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "80 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000192", - "lbl": "81 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "81 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000193", - "lbl": "82 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "82 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000194", - "lbl": "83 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "83 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000195", - "lbl": "84 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "84 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000196", - "lbl": "85 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "85 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000197", - "lbl": "86 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000198", - "lbl": "87 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "87 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000199", - "lbl": "88 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000200", - "lbl": "89 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "89 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000201", - "lbl": "90 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "90 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000202", - "lbl": "91 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "91 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000203", - "lbl": "92 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "92 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000204", - "lbl": "93 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "93 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000205", - "lbl": "94 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "94 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000206", - "lbl": "95 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "95 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000207", - "lbl": "96 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000208", - "lbl": "97 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "97 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000209", - "lbl": "98 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "98 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000210", - "lbl": "99 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "99 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000211", - "lbl": "100 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "100 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000212", - "lbl": "101 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "101 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000213", - "lbl": "102 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "102 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000214", - "lbl": "103 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "103 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000215", - "lbl": "104 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "104 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000216", - "lbl": "105 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "105 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000217", - "lbl": "106 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "106 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000218", - "lbl": "107 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "107 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000219", - "lbl": "108 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "108 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000220", - "lbl": "109 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "109 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000221", - "lbl": "110 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "110 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000222", - "lbl": "111 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "111 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000223", - "lbl": "112 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "112 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000224", - "lbl": "113 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "113 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000225", - "lbl": "114 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "114 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000226", - "lbl": "115 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "115 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000227", - "lbl": "116 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "116 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000228", - "lbl": "117 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "117 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000229", - "lbl": "118 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "118 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000230", - "lbl": "119 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "119 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000231", - "lbl": "120 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "120 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000232", - "lbl": "121 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "121 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000233", - "lbl": "122 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "122 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000234", - "lbl": "123 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "123 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000235", - "lbl": "124 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "124 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000236", - "lbl": "125 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "125 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000237", - "lbl": "126 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "126 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000238", - "lbl": "127 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "127 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000239", - "lbl": "128 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "128 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000240", - "lbl": "129 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "129 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000241", - "lbl": "130 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "130 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000242", - "lbl": "131 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "131 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000243", - "lbl": "132 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "132 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000244", - "lbl": "133 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "133 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000245", - "lbl": "134 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "134 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000246", - "lbl": "135 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "135 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000247", - "lbl": "136 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "136 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000248", - "lbl": "137 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "137 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000249", - "lbl": "138 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "138 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000250", - "lbl": "139 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "139 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000251", - "lbl": "140 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "140 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000252", - "lbl": "141 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "141 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000253", - "lbl": "142 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "142 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000254", - "lbl": "143 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "143 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000255", - "lbl": "144 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "144 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000256", - "lbl": "145 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "145 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000257", - "lbl": "146 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "146 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000258", - "lbl": "147 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "147 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000259", - "lbl": "148 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "148 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000260", - "lbl": "149 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "149 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000261", - "lbl": "150 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "150 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000262", - "lbl": "151 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "151 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000263", - "lbl": "152 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "152 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000264", - "lbl": "153 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "153 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000265", - "lbl": "154 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "154 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000266", - "lbl": "155 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "155 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000267", - "lbl": "156 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "156 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000268", - "lbl": "157 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "157 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000269", - "lbl": "158 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "158 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000270", - "lbl": "159 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "159 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000271", - "lbl": "160 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "160 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000272", - "lbl": "161 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "161 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000273", - "lbl": "162 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "162 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000274", - "lbl": "163 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "163 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000275", - "lbl": "164 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "164 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000276", - "lbl": "165 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "165 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000277", - "lbl": "166 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "166 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000278", - "lbl": "167 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "167 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000279", - "lbl": "168 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "168 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000280", - "lbl": "169 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "169 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000281", - "lbl": "170 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "170 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000282", - "lbl": "171 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "171 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000283", - "lbl": "172 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "172 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000284", - "lbl": "173 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "173 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000285", - "lbl": "174 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "174 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000286", - "lbl": "175 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "175 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000287", - "lbl": "176 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "176 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000288", - "lbl": "177 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "177 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000289", - "lbl": "178 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "178 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000290", - "lbl": "179 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "179 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000291", - "lbl": "180 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "180 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000292", - "lbl": "181 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "181 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000293", - "lbl": "182 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "182 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000294", - "lbl": "183 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "183 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000295", - "lbl": "184 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "184 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000296", - "lbl": "185 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "185 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000297", - "lbl": "186 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "186 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000298", - "lbl": "187 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "187 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000299", - "lbl": "188 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "188 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000300", - "lbl": "189 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "189 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000301", - "lbl": "190 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000302", - "lbl": "191 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "191 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000303", - "lbl": "192 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "192 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000304", - "lbl": "193 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "193 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000305", - "lbl": "194 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "194 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000306", - "lbl": "195 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "195 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000307", - "lbl": "196 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "196 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000308", - "lbl": "197 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "197 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000309", - "lbl": "198 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "198 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000310", - "lbl": "199 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "199 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000311", - "lbl": "200 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "200 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000312", - "lbl": "201 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "201 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000313", - "lbl": "202 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "202 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000314", - "lbl": "203 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "203 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000315", - "lbl": "204 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "204 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000316", - "lbl": "205 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "205 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000317", - "lbl": "206 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "206 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000318", - "lbl": "207 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "207 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000319", - "lbl": "208 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "208 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000320", - "lbl": "209 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "209 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000321", - "lbl": "210 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "210 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000322", - "lbl": "211 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "211 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000323", - "lbl": "212 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "212 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000324", - "lbl": "213 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "213 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000325", - "lbl": "214 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "214 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000326", - "lbl": "215 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "215 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000327", - "lbl": "216 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "216 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000328", - "lbl": "217 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "217 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000329", - "lbl": "218 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "218 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000330", - "lbl": "219 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "219 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000331", - "lbl": "220 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "220 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000332", - "lbl": "221 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "221 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000333", - "lbl": "222 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "222 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000334", - "lbl": "223 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "223 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000335", - "lbl": "224 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "224 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000336", - "lbl": "225 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "225 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000337", - "lbl": "226 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "226 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000338", - "lbl": "227 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "227 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000339", - "lbl": "228 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "228 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000340", - "lbl": "229 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "229 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000341", - "lbl": "230 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "230 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000342", - "lbl": "231 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "231 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000343", - "lbl": "232 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "232 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000344", - "lbl": "233 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "233 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000345", - "lbl": "234 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "234 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000346", - "lbl": "235 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "235 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000347", - "lbl": "236 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "236 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000348", - "lbl": "237 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "237 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000349", - "lbl": "238 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "238 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000350", - "lbl": "239 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "239 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000351", - "lbl": "240 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "240 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000352", - "lbl": "241 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "241 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000353", - "lbl": "242 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "242 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000354", - "lbl": "243 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "243 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000355", - "lbl": "244 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "244 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000356", - "lbl": "245 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "245 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000357", - "lbl": "246 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "246 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000358", - "lbl": "247 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "247 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000359", - "lbl": "248 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "248 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000360", - "lbl": "249 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "249 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000361", - "lbl": "250 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "250 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000362", - "lbl": "251 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "251 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000363", - "lbl": "252 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "252 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000364", - "lbl": "253 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "253 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000365", - "lbl": "254 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "254 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000366", - "lbl": "255 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "255 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000367", - "lbl": "256 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "256 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000368", - "lbl": "257 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "257 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000369", - "lbl": "258 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "258 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000370", - "lbl": "259 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "259 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000371", - "lbl": "260 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "260 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000372", - "lbl": "261 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "261 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000373", - "lbl": "262 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "262 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000374", - "lbl": "263 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "263 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000375", - "lbl": "264 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "264 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000376", - "lbl": "265 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "265 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000377", - "lbl": "266 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "266 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000378", - "lbl": "267 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "267 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000379", - "lbl": "268 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "268 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000380", - "lbl": "269 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "269 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000381", - "lbl": "270 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "270 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000382", - "lbl": "271 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "271 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000383", - "lbl": "272 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "272 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000384", - "lbl": "273 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "273 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000385", - "lbl": "274 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "274 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000386", - "lbl": "275 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "275 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000387", - "lbl": "276 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "276 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000388", - "lbl": "277 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "277 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000389", - "lbl": "278 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "278 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000390", - "lbl": "279 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "279 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000391", - "lbl": "280 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "280 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000392", - "lbl": "281 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "281 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000393", - "lbl": "282 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "282 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000394", - "lbl": "283 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "283 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000395", - "lbl": "284 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "284 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000396", - "lbl": "285 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "285 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000397", - "lbl": "286 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "286 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000398", - "lbl": "287 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "287 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000399", - "lbl": "288 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "288 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000400", - "lbl": "289 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "289 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000401", - "lbl": "290 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "290 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000402", - "lbl": "291 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "291 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000403", - "lbl": "292 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "292 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000404", - "lbl": "293 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "293 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000405", - "lbl": "294 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "294 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000406", - "lbl": "295 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "295 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000407", - "lbl": "296 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "296 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000408", - "lbl": "297 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "297 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000409", - "lbl": "298 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "298 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000410", - "lbl": "299 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "299 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000411", - "lbl": "300 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "300 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000412", - "lbl": "301 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "301 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000413", - "lbl": "302 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "302 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000414", - "lbl": "303 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "303 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000415", - "lbl": "304 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "304 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000416", - "lbl": "305 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "305 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000417", - "lbl": "306 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "306 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000418", - "lbl": "307 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "307 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000419", - "lbl": "308 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "308 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000420", - "lbl": "309 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "309 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000421", - "lbl": "310 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "310 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000422", - "lbl": "311 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "311 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000423", - "lbl": "312 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "312 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000424", - "lbl": "313 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "313 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000425", - "lbl": "314 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "314 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000426", - "lbl": "315 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "315 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000427", - "lbl": "316 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "316 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000428", - "lbl": "317 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "317 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000429", - "lbl": "318 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "318 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000430", - "lbl": "319 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "319 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000431", - "lbl": "320 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "320 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000432", - "lbl": "321 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "321 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000433", - "lbl": "322 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "322 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000434", - "lbl": "323 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "323 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000435", - "lbl": "324 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "324 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000436", - "lbl": "325 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "325 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000437", - "lbl": "326 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "326 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000438", - "lbl": "327 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "327 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000439", - "lbl": "328 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "328 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000440", - "lbl": "329 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "329 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000441", - "lbl": "330 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "330 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000442", - "lbl": "331 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "331 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000443", - "lbl": "332 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "332 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000444", - "lbl": "333 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "333 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000445", - "lbl": "334 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "334 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000446", - "lbl": "335 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "335 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000447", - "lbl": "336 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "336 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000448", - "lbl": "337 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "337 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000449", - "lbl": "338 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "338 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000450", - "lbl": "339 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "339 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000451", - "lbl": "340 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "340 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000452", - "lbl": "341 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "341 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000453", - "lbl": "342 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "342 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000454", - "lbl": "343 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "343 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000455", - "lbl": "344 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "344 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000456", - "lbl": "345 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "345 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000457", - "lbl": "346 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "346 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000458", - "lbl": "347 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "347 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000459", - "lbl": "348 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "348 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000460", - "lbl": "349 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "349 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000461", - "lbl": "350 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "350 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000462", - "lbl": "351 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "351 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000463", - "lbl": "352 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "352 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000464", - "lbl": "353 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "353 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000465", - "lbl": "354 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "354 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000466", - "lbl": "355 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "355 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000467", - "lbl": "356 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "356 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000468", - "lbl": "357 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "357 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000469", - "lbl": "358 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "358 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000470", - "lbl": "359 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "359 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000471", - "lbl": "360 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "360 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000472", - "lbl": "361 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "361 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000473", - "lbl": "362 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "362 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000474", - "lbl": "363 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "363 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000475", - "lbl": "364 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "364 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000476", - "lbl": "365 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "365 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000477", - "lbl": "366 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "366 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000478", - "lbl": "367 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "367 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000479", - "lbl": "368 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "368 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000480", - "lbl": "369 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "369 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000481", - "lbl": "370 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "370 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000482", - "lbl": "371 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "371 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000483", - "lbl": "372 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "372 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000484", - "lbl": "373 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "373 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000485", - "lbl": "374 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "374 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000486", - "lbl": "375 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "375 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000487", - "lbl": "376 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "376 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000488", - "lbl": "377 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "377 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000489", - "lbl": "378 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "378 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000490", - "lbl": "379 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "379 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000491", - "lbl": "380 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "380 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000492", - "lbl": "381 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "381 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000493", - "lbl": "382 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "382 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000494", - "lbl": "383 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "383 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000495", - "lbl": "384 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "384 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000496", - "lbl": "385 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "385 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000497", - "lbl": "386 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "386 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000498", - "lbl": "387 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "387 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000499", - "lbl": "388 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "388 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000500", - "lbl": "389 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "389 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000501", - "lbl": "390 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "390 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000502", - "lbl": "391 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "391 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000503", - "lbl": "392 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "392 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000504", - "lbl": "393 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "393 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000505", - "lbl": "394 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "394 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000506", - "lbl": "395 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "395 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000507", - "lbl": "396 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "396 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000508", - "lbl": "397 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "397 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000509", - "lbl": "398 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "398 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000510", - "lbl": "399 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "399 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000511", - "lbl": "400 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "400 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000512", - "lbl": "401 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "401 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000513", - "lbl": "402 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "402 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000514", - "lbl": "403 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "403 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000515", - "lbl": "404 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "404 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000516", - "lbl": "405 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "405 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000517", - "lbl": "406 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "406 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000518", - "lbl": "407 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "407 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000519", - "lbl": "408 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "408 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000520", - "lbl": "409 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "409 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000521", - "lbl": "410 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "410 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000522", - "lbl": "411 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "411 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000523", - "lbl": "412 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "412 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000524", - "lbl": "413 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "413 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000525", - "lbl": "414 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "414 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000526", - "lbl": "415 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "415 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000527", - "lbl": "416 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "416 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000528", - "lbl": "417 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "417 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000529", - "lbl": "418 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "418 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000530", - "lbl": "419 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "419 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000531", - "lbl": "420 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "420 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000532", - "lbl": "421 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "421 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000533", - "lbl": "422 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "422 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000534", - "lbl": "423 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "423 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000535", - "lbl": "424 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "424 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000536", - "lbl": "425 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "425 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000537", - "lbl": "426 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "426 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000538", - "lbl": "427 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "427 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000539", - "lbl": "428 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "428 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000540", - "lbl": "429 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "429 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000541", - "lbl": "430 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "430 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000542", - "lbl": "431 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "431 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000543", - "lbl": "432 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "432 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000544", - "lbl": "433 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "433 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000545", - "lbl": "434 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "434 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000546", - "lbl": "435 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "435 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000547", - "lbl": "436 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "436 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000548", - "lbl": "437 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "437 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000549", - "lbl": "438 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "438 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000550", - "lbl": "439 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "439 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000551", - "lbl": "440 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "440 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000552", - "lbl": "441 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "441 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000553", - "lbl": "442 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "442 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000554", - "lbl": "443 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "443 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000555", - "lbl": "444 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "444 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000556", - "lbl": "445 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "445 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000557", - "lbl": "446 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "446 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000558", - "lbl": "447 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "447 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000559", - "lbl": "448 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "448 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000560", - "lbl": "449 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "449 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000561", - "lbl": "450 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "450 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000562", - "lbl": "451 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "451 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000563", - "lbl": "452 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "452 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000564", - "lbl": "453 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "453 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000565", - "lbl": "454 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "454 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000566", - "lbl": "455 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "455 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000567", - "lbl": "456 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "456 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000568", - "lbl": "457 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "457 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000569", - "lbl": "458 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "458 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000570", - "lbl": "459 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "459 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000571", - "lbl": "460 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "460 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000572", - "lbl": "461 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "461 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000573", - "lbl": "462 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "462 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000574", - "lbl": "463 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "463 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000575", - "lbl": "464 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "464 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000576", - "lbl": "465 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "465 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000577", - "lbl": "466 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "466 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000578", - "lbl": "467 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "467 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000579", - "lbl": "468 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "468 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000580", - "lbl": "469 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "469 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000581", - "lbl": "470 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "470 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000582", - "lbl": "471 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "471 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000583", - "lbl": "472 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "472 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000584", - "lbl": "473 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "473 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000585", - "lbl": "474 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "474 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000586", - "lbl": "475 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "475 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000587", - "lbl": "476 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "476 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000588", - "lbl": "477 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "477 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000589", - "lbl": "478 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "478 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000590", - "lbl": "479 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "479 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000591", - "lbl": "480 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "480 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000592", - "lbl": "481 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "481 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000593", - "lbl": "482 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "482 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000594", - "lbl": "483 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "483 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000595", - "lbl": "484 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "484 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000596", - "lbl": "485 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "485 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000597", - "lbl": "486 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "486 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000598", - "lbl": "487 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "487 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000599", - "lbl": "488 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "488 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000600", - "lbl": "489 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "489 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000601", - "lbl": "490 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "490 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000602", - "lbl": "491 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "491 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000603", - "lbl": "492 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "492 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000604", - "lbl": "493 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "493 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000605", - "lbl": "494 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "494 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000606", - "lbl": "495 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "495 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000607", - "lbl": "496 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "496 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000608", - "lbl": "497 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "497 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000609", - "lbl": "498 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "498 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000610", - "lbl": "499 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "499 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000611", - "lbl": "500 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "500 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000612", - "lbl": "501 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "501 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000613", - "lbl": "502 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "502 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000614", - "lbl": "503 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "503 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000615", - "lbl": "504 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "504 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000616", - "lbl": "505 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "505 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000617", - "lbl": "506 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "506 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000618", - "lbl": "507 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "507 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000619", - "lbl": "508 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "508 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000620", - "lbl": "509 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "509 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000621", - "lbl": "510 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "510 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000622", - "lbl": "511 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "511 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000623", - "lbl": "512 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "512 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000624", - "lbl": "513 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "513 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000625", - "lbl": "514 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "514 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000626", - "lbl": "515 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "515 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000627", - "lbl": "516 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "516 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000628", - "lbl": "517 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "517 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000629", - "lbl": "518 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "518 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000630", - "lbl": "519 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "519 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000631", - "lbl": "520 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "520 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000632", - "lbl": "521 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "521 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000633", - "lbl": "522 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "522 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000634", - "lbl": "523 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "523 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000635", - "lbl": "524 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "524 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000636", - "lbl": "525 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "525 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000637", - "lbl": "526 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "526 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000638", - "lbl": "527 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "527 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000639", - "lbl": "528 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "528 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000640", - "lbl": "529 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "529 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000641", - "lbl": "530 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "530 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000642", - "lbl": "531 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "531 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000643", - "lbl": "532 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "532 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000644", - "lbl": "533 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "533 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000645", - "lbl": "534 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "534 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000646", - "lbl": "535 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "535 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000647", - "lbl": "536 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "536 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000648", - "lbl": "537 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "537 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000649", - "lbl": "538 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "538 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000650", - "lbl": "539 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "539 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000651", - "lbl": "540 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "540 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000652", - "lbl": "541 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "541 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000653", - "lbl": "542 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "542 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000654", - "lbl": "543 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "543 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000655", - "lbl": "544 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "544 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000656", - "lbl": "545 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "545 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000657", - "lbl": "546 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "546 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000658", - "lbl": "547 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "547 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000659", - "lbl": "548 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "548 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000660", - "lbl": "549 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "549 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000661", - "lbl": "550 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "550 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000663", - "lbl": "Brugia unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-10T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000078" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unsheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia mature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "mature microfilaria Bma" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000664", - "lbl": "microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." - ], - "definition": { - "val": "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000665", - "lbl": "Brugia microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:25:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000666", - "lbl": "unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:50:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000667", - "lbl": "nodular microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found in nodules and ulcers.", - "xrefs": [ - "PMID:1796232", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae" - }, - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000668", - "lbl": "skin microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found subcutaneously", - "xrefs": [ - "PMID:20772951", - "PMID:7797912", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "skin microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000669", - "lbl": "unfertilized egg Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-26T11:49:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unfertilized egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000670", - "lbl": "6-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000671", - "lbl": "7-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000672", - "lbl": "8-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000673", - "lbl": "9-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000674", - "lbl": "10-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000675", - "lbl": "15-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000676", - "lbl": "20-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000677", - "lbl": "Strongyloides free-living stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:51:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000678", - "lbl": "Strongyloides parasitic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:52:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000679", - "lbl": "nematode infective stage larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:21:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Host organism here refers to the main host organism rather than intermediate hosts." - ], - "definition": { - "val": "Larval stage that is capable of infecting a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasNarrowSynonym", - "val": "infective larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000680", - "lbl": "Strongyloides infective L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:27:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "infective L3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides iL3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides infective stage larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000681", - "lbl": "Strongyloides parasitic female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:36:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic female" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000682", - "lbl": "Strongyloides free-living adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:48:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living adult" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides free-living L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000683", - "lbl": "L4.0 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:03:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.0 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000684", - "lbl": "L4.1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:06:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000685", - "lbl": "L4.2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:09:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000686", - "lbl": "L4.3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:10:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000687", - "lbl": "L4.4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:11:12Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000688", - "lbl": "L4.5 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:13:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.5 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000689", - "lbl": "L4.6 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:15:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.6 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000690", - "lbl": "L4.7 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:16:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.7 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000691", - "lbl": "L4.8 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:18:02Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.8 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000692", - "lbl": "L4.9 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:20:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.9 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000693", - "lbl": "560 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T09:27:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "560 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000694", - "lbl": "570 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T10:07:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "570 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000695", - "lbl": "640 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:08:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "640 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000696", - "lbl": "650 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:11:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "650 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000697", - "lbl": "660 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:13:05Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "660 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000698", - "lbl": "720 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:16:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "720 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000699", - "lbl": "770 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:18:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "770 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000700", - "lbl": "780 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:23:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "780 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000701", - "lbl": "820 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:25:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "820 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000702", - "lbl": "830 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:28:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "830 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000703", - "lbl": "850 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:30:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "850 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000704", - "lbl": "Platyhelminthes life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:14:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in Platyhelminthes (flatworms).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "Platyhelminthes developmental stage" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000705", - "lbl": "Platyhelminthes egg", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:17:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "egg" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000706", - "lbl": "miracidium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:35:26Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000707", - "lbl": "sporocyst", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:42:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000708", - "lbl": "cercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:44:51Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "cercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000709", - "lbl": "schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:46:43Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "somule" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000710", - "lbl": "Platyhelminthes adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:51:21Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000711", - "lbl": "Digenean life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:11:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Digeneans include the Schistosomatidae (blood flukes)." - ], - "definition": { - "val": "A developmental stage of a Digenean (fluke).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "fluke life stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000712", - "lbl": "Cestoda life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:18:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a Cestode (tapeworm).", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000713", - "lbl": "oncosphere", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T13:42:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "hexcanth" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000714", - "lbl": "hydatid cyst stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:27:42Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "hydatid cyst" - }, - { - "pred": "hasExactSynonym", - "val": "metacestode vesicle" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000715", - "lbl": "protoscolex stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:40:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "protoscolex" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000716", - "lbl": "metacestode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T15:02:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:070202788X", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacestode stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000717", - "lbl": "cysticercoid stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-18T11:15:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000718", - "lbl": "newly excysted juveniles", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:02:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "NEJ" - }, - { - "pred": "hasExactSynonym", - "val": "newly emerged juveniles" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000719", - "lbl": "juvenile fluke", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:56:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000720", - "lbl": "metacercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T13:01:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000721", - "lbl": "obsolete nematode adult intestinal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:03:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult intestinal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000722", - "lbl": "obsolete nematode adult lumenal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:13:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult lumenal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000723", - "lbl": "Onchocerca embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:22:55Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000724", - "lbl": "3 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:54:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "3 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000017" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000725", - "lbl": "24 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:56:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "24 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000172" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000726", - "lbl": "Onchocerca post-embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:23:56Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca post-embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000727", - "lbl": "Onchocerca microfilaria (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:24:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000728", - "lbl": "Onchocerca microfilaria (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:28:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000729", - "lbl": "Strongyloides free living adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:28:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000730", - "lbl": "Onchocerca L1 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L1 larvae that develop from the microfilariae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000731", - "lbl": "Onchocerca L2 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:40:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L2 larvae that develops from the L1 larvae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000732", - "lbl": "Onchocerca L3 larva (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:45:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000733", - "lbl": "Onchocerca L3 larva (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:48:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000734", - "lbl": "Onchocerca L3 larva in vitro cultured D1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:50:17Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000735", - "lbl": "Onchocerca L3 larva in vitro cultured D2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:51:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000736", - "lbl": "Onchocerca L3 larva in vitro cultured D3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:53:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000737", - "lbl": "Onchocerca L4 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:59:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L4 larvae that develop from L3 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000738", - "lbl": "Onchocerca L4 larva in vitro cultured", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:01:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000739", - "lbl": "Onchocerca adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:02:24Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000740", - "lbl": "Onchocerca adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:03:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000741", - "lbl": "Onchocerca life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:18:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a nematode of the Onchocerca genus.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000742", - "lbl": "Strongyloides free living adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:34:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000793", - "lbl": "Strongyloides post free-living L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:38:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post free-living L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000794", - "lbl": "Strongyloides post parasitic L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:39:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000795", - "lbl": "Strongyloides post parasitic L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:55:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000796", - "lbl": "Strongyloides post free-living L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:57:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000797", - "lbl": "11-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000798", - "lbl": "12-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000799", - "lbl": "13-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:11Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000800", - "lbl": "14-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000801", - "lbl": "newly hatched L1 larval stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", - "xrefs": [ - "PMC:4492366", - "WA:Wormatlas", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000802", - "lbl": "L1 arrest Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:15:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", - "xrefs": [ - "PMC:3697962", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 diapause" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000803", - "lbl": "C. elegans life stage occurring during embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000804", - "lbl": "C. elegans life stage occurring post embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs after embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000805", - "lbl": "C. elegans life stage occurring during elongating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000806", - "lbl": "C. elegans life stage occurring during 1.5-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000807", - "lbl": "C. elegans life stage occurring during 2-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 2-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000808", - "lbl": "C. elegans life stage occurring during 3-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 3-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000809", - "lbl": "C. elegans life stage occurring during bean embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the bean embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000810", - "lbl": "C. elegans life stage occurring during comma embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the comma embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000811", - "lbl": "C. elegans life stage occurring during fully-elongated embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the fully-elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000812", - "lbl": "C. elegans life stage occurring during proliferating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the proliferating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000813", - "lbl": "C. elegans life stage occurring during blastula embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the blastula embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000814", - "lbl": "C. elegans life stage occurring during gastrulation", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the gastrulating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000815", - "lbl": "C. elegans life stage occurring during enclosing embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the enclosing embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000816", - "lbl": "C. elegans life stage occurring during adulthood", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the adult life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000817", - "lbl": "C. elegans life stage occurring during larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000818", - "lbl": "C. elegans life stage occurring during L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L1 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000819", - "lbl": "C. elegans life stage occurring during L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L2 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000820", - "lbl": "C. elegans life stage occurring during L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L3 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000821", - "lbl": "C. elegans life stage occurring during L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L4 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000822", - "lbl": "C. elegans life stage by minutes post first cleavage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000823", - "lbl": "C. elegans life stage by number of cells", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage classified by the number of cells in the organism.", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000824", - "lbl": "C. elegans life stage occurring during larval molt", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage that occurs during a larval molt", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000825", - "lbl": "C. elegans life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A life stage of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000826", - "lbl": "obsolete set of worm life stages", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000827", - "lbl": "post dauer stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000828", - "lbl": "post dauer L4 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL4" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000829", - "lbl": "post dauer adult stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000016", - "lbl": "disposition", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000019", - "lbl": "quality", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000034", - "lbl": "function", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/CARO_0030000", - "lbl": "biological entity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0003824", - "lbl": "catalytic activity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0008150", - "lbl": "biological_process", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0016301", - "lbl": "kinase activity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0016740", - "lbl": "transferase activity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0016772", - "lbl": "transferase activity, transferring phosphorus-containing groups", - "type": "CLASS" - }, - { - "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" - }, - { - "id": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "is defined by" - } - ] - } - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000078", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000663" - } - ], - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000662", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000077" - } - ], - "deprecated": true - }, - "type": "CLASS" + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000004", + "lbl" : "independent continuant", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." } - ], - "propertyChainAxioms": [ - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000050" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000051" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000062" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000063" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000063" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0000052" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002314" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002131" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002203" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002255" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002216" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002329" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002314" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002314" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0000057" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000057" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002131" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002202" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002254" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002584" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004031" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002017", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002025", - "http://purl.obolibrary.org/obo/RO_0002211" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002596" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002448" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0019000" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019000" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002212" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002597" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002430" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002430" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0019001" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019002" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002598" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002429" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002429" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0019001" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019001" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0019002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019002" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002215", - "http://purl.obolibrary.org/obo/RO_0002233" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0017001" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002233", - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002411" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002566" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002304", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004034" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002305", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004035" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333", - "http://purl.obolibrary.org/obo/RO_0002411" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002566" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002450" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002449" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002411" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002418" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0004046" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004033" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0004047" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004032" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002407", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002407", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002409", - "http://purl.obolibrary.org/obo/RO_0002409" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002409", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002409", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002578", - "http://purl.obolibrary.org/obo/RO_0002578" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002629", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002630", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002409" + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000015", + "lbl" : "process", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." } - ] - } - ] -} + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000016", + "lbl" : "disposition", + "type" : "CLASS" + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000017", + "lbl" : "realizable entity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000019", + "lbl" : "quality", + "type" : "CLASS" + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000020", + "lbl" : "specifically dependent continuant", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000023", + "lbl" : "role", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000034", + "lbl" : "function", + "type" : "CLASS" + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000040", + "lbl" : "material entity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000050", + "lbl" : "part_of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a core relation that holds between a part and its whole" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_gp2term", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "xrefs" : [ { + "val" : "BFO:0000050" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "is part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my brain is part of my body (continuant parthood, two material entities)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this day is part of this year (occurrent parthood)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "part_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000019" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000031" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand", + "val" : "part_of" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Submissions:PartOf" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:part_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000051", + "lbl" : "has part", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a core relation that holds between a whole and its part" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "has part" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my body has part my brain (continuant parthood, two material entities)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this year has part this day (occurrent parthood)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_part" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000062", + "lbl" : "preceded_by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "xrefs" : [ { + "val" : "BFO:0000062" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "preceded by" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is preceded by" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "preceded_by" + }, { + "pred" : "http://purl.org/dc/elements/1.1/source", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" + }, { + "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/BFO_0000063", + "lbl" : "precedes", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "precedes" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/CARO_0000000", + "lbl" : "anatomical entity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex.", + "xrefs" : [ "CAROC:Brownsville2014" ] + }, + "comments" : [ "Following BFO, material anatomical entities may have immaterial parts (the lumen of your stomach is part of your stomach). The granularity limit follows the limits set by the Gene Ontology on the granularity limit for GO:cellular_component. Note that substances produced by an organism (sweat, feaces, urine) do not need to be part of an organism to qualify as an anatomical structure." ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/GO_0003674", + "lbl" : "molecular_function", + "type" : "CLASS", + "meta" : { + "definition" : { + "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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process.", + "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecular function" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/GO_0008150", + "lbl" : "biological_process", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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" ] + }, + "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "biological process" + }, { + "pred" : "hasExactSynonym", + "val" : "physiological process" + }, { + "pred" : "hasRelatedSynonym", + "val" : "single organism process" + }, { + "pred" : "hasRelatedSynonym", + "val" : "single-organism process" + } ], + "xrefs" : [ { + "val" : "Wikipedia:Biological_process" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-09-19T15:05:24Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/GO_0016301", + "lbl" : "kinase activity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule.", + "xrefs" : [ "ISBN:0198506732" ] + }, + "comments" : [ "Note that this term encompasses all activities that transfer a single phosphate group; although ATP is by far the most common phosphate donor, reactions using other phosphate donors are included in this term." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "phosphokinase activity" + } ], + "xrefs" : [ { + "val" : "Reactome:R-HSA-6788855" + }, { + "val" : "Reactome:R-HSA-6788867" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/IAO_0000115", + "lbl" : "definition", + "type" : "PROPERTY" + }, { + "id" : "http://purl.obolibrary.org/obo/IAO_0100001", + "lbl" : "term replaced by", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/PATO_0000001", + "lbl" : "quality", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities", + "xrefs" : [ "PATOC:GVG" ] + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000052", + "lbl" : "characteristic of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence." + }, + "comments" : [ "Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "inheres in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this fragility is a characteristic of this vase" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this red color is a characteristic of this apple" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "inheres_in" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000053", + "lbl" : "has characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Inverse of characteristic_of" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "bearer of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this apple is bearer of this red color" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this vase is bearer of this fragility" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "bearer_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is bearer of" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000056", + "lbl" : "participates in", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a continuant and a process, in which the continuant is somehow involved in the process" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "participates in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this blood clot participates in this blood coagulation" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this input material (or this output material) participates in this process" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this investigator participates in this investigation" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "participates_in" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000057", + "lbl" : "has participant", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a process and a continuant, in which the continuant is somehow involved in the process" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "has participant" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this blood coagulation has participant this blood clot" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this investigation has participant this investigator" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this process has participant this input material (or this output material)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "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." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_participant" + }, { + "pred" : "http://purl.org/dc/elements/1.1/source", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:has_participant" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000079", + "lbl" : "function of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this catalysis function is a function of this enzyme" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "function_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is function of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000080", + "lbl" : "quality of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this red color is a quality of this apple" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A quality inheres in its bearer at all times for which the quality exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is quality of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "quality_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000081", + "lbl" : "role of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this investigator role is a role of this person" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is role of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "role_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000085", + "lbl" : "has function", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_function" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000086", + "lbl" : "has quality", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this apple has quality this red color" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_quality" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000087", + "lbl" : "has role", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this person has role this investigator role (more colloquially: this person has this role of investigator)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_role" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000091", + "lbl" : "has disposition", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence" + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000092", + "lbl" : "disposition of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of has disposition" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002013", + "lbl" : "has regulatory component activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:30:46Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002014", + "lbl" : "has negative regulatory component activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B." + }, + "comments" : [ "By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:31:01Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002015", + "lbl" : "has positive regulatory component activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B." + }, + "comments" : [ "By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:31:17Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002017", + "lbl" : "has component activity", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:44:33Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002018", + "lbl" : "has component process", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:49:21Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002022", + "lbl" : "directly regulated by", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-17T13:52:24Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002023", + "lbl" : "directly negatively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1.", + "xrefs" : [ "GOC:dos" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-17T13:52:38Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002024", + "lbl" : "directly positively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1.", + "xrefs" : [ "GOC:dos" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-17T13:52:47Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002025", + "lbl" : "has effector activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.", + "xrefs" : [ "GOC:dos" ] + }, + "comments" : [ "This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-22T14:14:36Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002086", + "lbl" : "ends after", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)" ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002087", + "lbl" : "starts_at_end_of", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)" ], + "xrefs" : [ { + "val" : "RO:0002087" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "starts_at_end_of" + }, { + "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/RO_0002090", + "lbl" : "immediately precedes", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X immediately_precedes_Y iff: end(X) simultaneous_with start(Y)" ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-7073-9172" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "ends_at_start_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "meets" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002575", + "val" : "http://purl.obolibrary.org/obo/BFO_0000063" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002131", + "lbl" : "overlaps", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x overlaps y if and only if there exists some z such that x has part z and z part of y" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000424", + "val" : "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002180", + "lbl" : "has component", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit." + }, { + "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" : "http://ontologydesignpatterns.org/wiki/Submissions:Componency" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002202", + "lbl" : "develops from", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y" + }, + "comments" : [ "This is the transitive form of the develops from relation" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0001-9114-8737" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-7073-9172" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-1980-3228" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002203", + "lbl" : "develops into", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of develops from" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-7073-9172" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-1980-3228" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002211", + "lbl" : "regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0001-7476-6306" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-3837-8864" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "GO" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Regulation precludes parthood; the regulatory process may not be within the regulated process." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "regulates (processual)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000600", + "val" : "false" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002212", + "lbl" : "negatively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "negatively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002211" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002213", + "lbl" : "positively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "positively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002211" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002215", + "lbl" : "capable of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. " + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "osteoclast SubClassOf 'capable of' some 'bone resorption'" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has function realized in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://www.ncbi.nlm.nih.gov/pubmed/20123131" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://www.ncbi.nlm.nih.gov/pubmed/21208450" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "For compatibility with BFO, this relation has a shortcut definition in which the expression \"capable of some P\" expands to \"bearer_of (some realized_by only P)\"." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002216", + "lbl" : "capable of part of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has function in" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002222", + "lbl" : "temporally related to", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations." ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "https://en.wikipedia.org/wiki/Allen%27s_interval_algebra" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends." + }, { + "pred" : "http://purl.org/dc/terms/source", + "val" : "https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002233", + "lbl" : "has input", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "consumes" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002254", + "lbl" : "has developmental contribution from", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has developmental contribution from y iff x has some part z such that z develops from y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong]" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002255", + "lbl" : "developmentally contributes to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of has developmental contribution from" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002258", + "lbl" : "developmentally preceded by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p" + }, + "comments" : [ "This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "false" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "In general you should not use this relation to make assertions - use one of the more specific relations below this one" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002263", + "lbl" : "acts upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002264", + "lbl" : "acts upstream of or within", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "affects" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002286", + "lbl" : "developmentally succeeded by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Inverse of developmentally preceded by" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002304", + "lbl" : "causally upstream of, positive effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q." + }, + "comments" : [ "holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y" ], + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "pred" : "http://purl.org/dc/terms/creator", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002305", + "lbl" : "causally upstream of, negative effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "pred" : "http://purl.org/dc/terms/creator", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002314", + "lbl" : "characteristic of part of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Because part_of is transitive, inheres in is a sub-relation of characteristic of part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "inheres in part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://www.ncbi.nlm.nih.gov/pubmed/20064205" + }, { + "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" : "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002323", + "lbl" : "mereotopologically related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A mereological relationship or a topological relationship" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002324", + "lbl" : "developmentally related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between entities participating in some developmental process (GO:0032502)" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002327", + "lbl" : "enables", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c enables p iff c is capable of p and c acts to execute p." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "a particular instances of akt-2 enables some instance of protein kinase activity" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "catalyzes" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "executes" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is catalyzing" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is executing" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002328", + "lbl" : "functionally related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "This is a grouping relation that collects relations used for the purpose of connecting structure and function" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002329", + "lbl" : "part of structure that is capable of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "this relation holds between c and p when c is part of some c', and c' is capable of p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "false" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002331", + "lbl" : "involved in", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved_in p if and only if c enables some process p', and p' is part of p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "actively involved in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "enables part of" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Involved_in" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002333", + "lbl" : "enabled by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of enables" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002334", + "lbl" : "regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of regulates" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "regulated by (processual)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002335", + "lbl" : "negatively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of negatively regulates" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002336", + "lbl" : "positively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of positively regulates" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002352", + "lbl" : "input of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of has input" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002384", + "lbl" : "has developmental potential involving", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002385", + "lbl" : "has potential to developmentally contribute to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002387", + "lbl" : "has potential to develop into", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has the potential to develop into y iff x develops into y or if x is capable of developing into y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002388", + "lbl" : "has potential to directly develop into", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002404", + "lbl" : "causally downstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of upstream of" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002405", + "lbl" : "immediately causally downstream of", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002407", + "lbl" : "indirectly positively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "indirectly activates" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002579", + "val" : "http://purl.obolibrary.org/obo/RO_0002213" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002409", + "lbl" : "indirectly negatively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "indirectly inhibits" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002579", + "val" : "http://purl.obolibrary.org/obo/RO_0002212" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002410", + "lbl" : "causally related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause.", + "xrefs" : [ "https://en.wikipedia.org/wiki/Causality" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents.\n\nTo define causal relations in an activity-flow type network, we make use of 3 primitives:\n\n * Temporal: how do the intervals of the two occurrents relate? \n * Is the causal relation regulatory?\n * Is the influence positive or negative?\n\nThe first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified.\n\nFor the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule.\n\nFor the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral.\n\nEach of these 3 primitives can be composed to yield a cross-product of different relation types." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002411", + "lbl" : "causally upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002412", + "lbl" : "immediately causally upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002575", + "val" : "http://purl.obolibrary.org/obo/RO_0002411" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002418", + "lbl" : "causally upstream of or within", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q." + }, + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "affects" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "influences (processual)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002427", + "lbl" : "causally downstream of or within", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of causally upstream of or within" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002428", + "lbl" : "involved in regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in regulation of p if c is involved in some p' and p' regulates some p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002429", + "lbl" : "involved in positive regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in regulation of p if c is involved in some p' and p' positively regulates some p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002428" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002430", + "lbl" : "involved in negative regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in regulation of p if c is involved in some p' and p' negatively regulates some p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002428" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002431", + "lbl" : "involved in or involved in regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "OWL does not allow defining object properties via a Union" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "involved in or reguates" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002434", + "lbl" : "interacts with", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between two entities in which the processes executed by the two entities are causally connected." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "in pairwise interaction with" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Considering relabeling as 'pairwise interacts with'" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" + }, { + "pred" : "http://www.w3.org/2004/02/skos/core#closeMatch", + "val" : "http://purl.obolibrary.org/obo/MI_0914" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002436", + "lbl" : "molecularly interacts with", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "binds" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "molecularly binds with" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ECO_0000353" + }, { + "pred" : "http://www.w3.org/2004/02/skos/core#closeMatch", + "val" : "http://purl.obolibrary.org/obo/MI_0915" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002447", + "lbl" : "phosphorylates", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Axiomatization to GO to be added later" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002448", + "lbl" : "directly regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B." + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecularly controls" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002449", + "lbl" : "directly negatively regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B." + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecularly decreases activity of" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "directly inhibits" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002450", + "lbl" : "directly positively regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B." + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecularly increases activity of" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "directly activates" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002464", + "lbl" : "helper property (not for use in curation)", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002481", + "lbl" : "is kinase activity", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002500", + "lbl" : "causal agent in process", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship between a material entity and a process where the material entity has some causal role that influences the process" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002501", + "lbl" : "causal relation between processes", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002502", + "lbl" : "depends on", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/BFO_0000169" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002506", + "lbl" : "causal relation between entities", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002559", + "lbl" : "causally influenced by", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "causally influenced by (entity-centric)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002563", + "lbl" : "interaction relation helper property", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002564", + "lbl" : "molecular interaction relation helper property", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002566", + "lbl" : "causally influences", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size)." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "causally influences (entity-centric)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002578", + "lbl" : "directly regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p directly regulates q iff p is immediately causally upstream of q and p regulates q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "directly regulates (processual)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002575", + "val" : "http://purl.obolibrary.org/obo/RO_0002211" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002581", + "lbl" : "is a defining property chain axiom", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL" + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002582", + "lbl" : "is a defining property chain axiom where second argument is reflexive", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002584", + "lbl" : "has part structure that is capable of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "gland SubClassOf 'has part structure that is capable of' some 'secretion by cell'" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002595", + "lbl" : "causal relation between material entity and a process", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002596", + "lbl" : "capable of regulating", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between c and p if and only if c is capable of some activity a, and a regulates p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "pyrethroid -> growth" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002597", + "lbl" : "capable of negatively regulating", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002598", + "lbl" : "capable of positively regulating", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between c and p if and only if c is capable of some activity a, and a positively regulates p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "renin -> arteriolar smooth muscle contraction" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002608", + "lbl" : "process has causal agent", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Inverse of 'causal agent in process'" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002629", + "lbl" : "directly positively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "directly positively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002578" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002630", + "lbl" : "directly negatively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "directly negatively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002578" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004031", + "lbl" : "enables subfunction", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-25T23:20:13Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004032", + "lbl" : "acts upstream of or within, positive effect", + "type" : "PROPERTY", + "meta" : { + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:49:30Z" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within,_positive_effect" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004033", + "lbl" : "acts upstream of or within, negative effect", + "type" : "PROPERTY", + "meta" : { + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:49:51Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004034", + "lbl" : "acts upstream of, positive effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:53:14Z" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of,_positive_effect" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004035", + "lbl" : "acts upstream of, negative effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:53:22Z" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of,_negative_effect" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004046", + "lbl" : "causally upstream of or within, negative effect", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-03-13T23:55:05Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004047", + "lbl" : "causally upstream of or within, positive effect", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-03-13T23:55:19Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0011002", + "lbl" : "regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0012011", + "lbl" : "indirectly causally upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "pg" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2022-09-26T06:07:17Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0012012", + "lbl" : "indirectly regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "pg" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2022-09-26T06:08:01Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0017001", + "lbl" : "device utilizes material", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y." + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "utilizes" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "A diagnostic testing device utilizes a specimen." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0001-9625-1899" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-2620-0345" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "See github ticket https://github.com/oborel/obo-relations/issues/497" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2021-11-08T12:00:00Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0019000", + "lbl" : "regulates characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.org/dc/terms/contributor", + "val" : "https://orcid.org/0000-0002-8688-6599" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0019001", + "lbl" : "positively regulates characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.org/dc/terms/contributor", + "val" : "https://orcid.org/0000-0002-8688-6599" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0019002", + "lbl" : "negatively regulates characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.org/dc/terms/contributor", + "val" : "https://orcid.org/0000-0002-8688-6599" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000001", + "lbl" : "free-living nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely outside of a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:42:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000002", + "lbl" : "all stages Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "All C. elegans development stages, including embryo, larva and adult stage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000003", + "lbl" : "embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000004", + "lbl" : "proliferating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "proliferating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000005", + "lbl" : "blastula embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "blastula embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000006", + "lbl" : "1-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-cell embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "fertilized egg", + "xrefs" : [ "WB:dr" ] + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000007", + "lbl" : "2-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000008", + "lbl" : "4-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000009", + "lbl" : "28-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000010", + "lbl" : "gastrulating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "gastrulating embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000011", + "lbl" : "51-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000012", + "lbl" : "88-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000013", + "lbl" : "enclosing embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "enclosing embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000014", + "lbl" : "late cleavage stage embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late cleavage stage embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000015", + "lbl" : "elongating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "elongating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "mid embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000016", + "lbl" : "bean embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "bean embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000017", + "lbl" : "comma embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "comma embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000018", + "lbl" : "1.5-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1.5-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000019", + "lbl" : "2-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000020", + "lbl" : "3-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000021", + "lbl" : "fully-elongated embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "fully-elongated embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "morphogenetic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "pre-hatched embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000022", + "lbl" : "postembryonic Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000023", + "lbl" : "larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000024", + "lbl" : "L1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000025", + "lbl" : "L1-L2 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000026", + "lbl" : "L1-L2 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000027", + "lbl" : "L2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000028", + "lbl" : "L2-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000029", + "lbl" : "L2-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000030", + "lbl" : "L2d-dauer lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000031", + "lbl" : "L2d-dauer molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000032", + "lbl" : "dauer larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A third stage larva specialized for dispersal and long term survival.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "dauer larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000033", + "lbl" : "postdauer-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000034", + "lbl" : "postdauer-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000035", + "lbl" : "L3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000036", + "lbl" : "L3-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000037", + "lbl" : "L3-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000038", + "lbl" : "L4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000039", + "lbl" : "L4-adult lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000040", + "lbl" : "L4-adult molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000041", + "lbl" : "adult Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000042", + "lbl" : "L1-L2 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000043", + "lbl" : "L1-L2d molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000044", + "lbl" : "L1-L2d lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000045", + "lbl" : "L1-L2d ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000046", + "lbl" : "L2d larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000047", + "lbl" : "L2-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000048", + "lbl" : "L2d-dauer ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000049", + "lbl" : "L3-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000050", + "lbl" : "L4-adult ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000051", + "lbl" : "postdauer-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000052", + "lbl" : "post dauer L3 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", + "xrefs" : [ "PMID:27417559", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL3" + }, { + "pred" : "hasExactSynonym", + "val" : "dauer exit" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000053", + "lbl" : "L2d-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000054", + "lbl" : "L2d-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000055", + "lbl" : "L2d-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000056", + "lbl" : "adult male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an male animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000057", + "lbl" : "adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000058", + "lbl" : "pre-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "pre-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000059", + "lbl" : "parasitic nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:44:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000060", + "lbl" : "reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000061", + "lbl" : "oocyte-laying stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "oocyte-laying stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000062", + "lbl" : "post-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000063", + "lbl" : "newly molted young adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 0-24 hours after L4-adult molt.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "newly molted young adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000064", + "lbl" : "1-day post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-day post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000065", + "lbl" : "2-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000066", + "lbl" : "3-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000067", + "lbl" : "4-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000068", + "lbl" : "5-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000069", + "lbl" : "4-7 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-7 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000070", + "lbl" : "7-10 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-10 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000071", + "lbl" : "8-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000072", + "lbl" : "12-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000073", + "lbl" : "L4 larva male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000074", + "lbl" : "11-15 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-22T14:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000075", + "lbl" : "worm life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of a worm", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000076", + "lbl" : "Strongyloides life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Strongyloides developmental stage, including free-living and parasitic stages.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages Strongyloides" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:49:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000077", + "lbl" : "Brugia sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "sheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia immature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "immature microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000662" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000078", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000663" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000079", + "lbl" : "Brugia L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1" + }, { + "pred" : "hasExactSynonym", + "val" : "L1 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000080", + "lbl" : "Brugia L2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2" + }, { + "pred" : "hasExactSynonym", + "val" : "L2 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:30:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000081", + "lbl" : "Brugia L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3" + }, { + "pred" : "hasExactSynonym", + "val" : "L3 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000082", + "lbl" : "Brugia L4", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4" + }, { + "pred" : "hasExactSynonym", + "val" : "L4 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:38Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000083", + "lbl" : "Brugia adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:32:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000084", + "lbl" : "14-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "E-cell has divided into Ea and Ep. Contains 14 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:15:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000085", + "lbl" : "24-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fourth cleavage of the AB lineage. Contains 24 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:23:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000086", + "lbl" : "44-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fifth cleavage of the AB lineage. Contains 44 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:25:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000087", + "lbl" : "68-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Sixth cleavage of the AB lineage. Contains 68 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:26:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000088", + "lbl" : "86-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Seventh cleavage of the AB lineage. Contains 86 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:27:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000089", + "lbl" : "190-cells embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "P4 and M cells have finished migrating. Contains 190 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190-cells embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-15T13:19:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000090", + "lbl" : "96-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-16T15:37:30Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000091", + "lbl" : "Brugia life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Brugia developmental stage, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T03:18:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000092", + "lbl" : "Brugia embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:48:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000093", + "lbl" : "Brugia postembryonic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "postembryonic Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:50:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000094", + "lbl" : "Brugia early embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "early embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:55:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000095", + "lbl" : "Brugia middle embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Proliferates from 100 cells to Lima bean stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "middle embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "middle embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:59:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000096", + "lbl" : "Brugia late embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "From Lima bean to hatching.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:00:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000097", + "lbl" : "Brugia larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:12:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000098", + "lbl" : "Brugia L3i", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3i" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia vector-derived L3" + }, { + "pred" : "hasExactSynonym", + "val" : "vector-derived L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "iL3" + }, { + "pred" : "hasRelatedSynonym", + "val" : "infective L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:23:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000099", + "lbl" : "Brugia post-infection L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-infection L3" + }, { + "pred" : "hasExactSynonym", + "val" : "post-infection L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "piL3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:24:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000100", + "lbl" : "Brugia young adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "young adult" + }, { + "pred" : "hasExactSynonym", + "val" : "young adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:37:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000101", + "lbl" : "Nematode life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in a nematode, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:13:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000102", + "lbl" : "nematode embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "embryo nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode egg stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000103", + "lbl" : "postembryonic nematode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a nematode that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:39Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000104", + "lbl" : "nematode adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L5" + }, { + "pred" : "hasExactSynonym", + "val" : "adult nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:18:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000105", + "lbl" : "nematode larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins after hatching and ends when the nematode becomes adult.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:19:27Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000106", + "lbl" : "L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000107", + "lbl" : "L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L2 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000108", + "lbl" : "L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L3 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:21:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000109", + "lbl" : "L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L4 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:22:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000110", + "lbl" : "sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:23:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000111", + "lbl" : "16-18 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16-18 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000112", + "lbl" : "1 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000113", + "lbl" : "2 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000114", + "lbl" : "3 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000115", + "lbl" : "4 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000116", + "lbl" : "5 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000117", + "lbl" : "6 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000118", + "lbl" : "7 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000119", + "lbl" : "8 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000120", + "lbl" : "9 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000121", + "lbl" : "10 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000122", + "lbl" : "11 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000123", + "lbl" : "12 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000124", + "lbl" : "13 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000125", + "lbl" : "14 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000126", + "lbl" : "15 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000127", + "lbl" : "16 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000128", + "lbl" : "17 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "17 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000129", + "lbl" : "18 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "18 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000130", + "lbl" : "19 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "19 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000131", + "lbl" : "20 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000132", + "lbl" : "21 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "21 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000133", + "lbl" : "22 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "22 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000134", + "lbl" : "23 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "23 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000135", + "lbl" : "24 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000136", + "lbl" : "25 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "25 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000137", + "lbl" : "26 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "26 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000138", + "lbl" : "27 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "27 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000139", + "lbl" : "28 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000140", + "lbl" : "29 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "29 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000141", + "lbl" : "30 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "30 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000142", + "lbl" : "31 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "31 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000143", + "lbl" : "32 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "32 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000144", + "lbl" : "33 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "33 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000145", + "lbl" : "34 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "34 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000146", + "lbl" : "35 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "35 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000147", + "lbl" : "36 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "36 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000148", + "lbl" : "37 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "37 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000149", + "lbl" : "38 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "38 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000150", + "lbl" : "39 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "39 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000151", + "lbl" : "40 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "40 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000152", + "lbl" : "41 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "41 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000153", + "lbl" : "42 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "42 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000154", + "lbl" : "43 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "43 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000155", + "lbl" : "44 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000156", + "lbl" : "45 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "45 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000157", + "lbl" : "46 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "46 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000158", + "lbl" : "47 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "47 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000159", + "lbl" : "48 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "48 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000160", + "lbl" : "49 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "49 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000161", + "lbl" : "50 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "50 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000162", + "lbl" : "51 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000163", + "lbl" : "52 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "52 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000164", + "lbl" : "53 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "53 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000165", + "lbl" : "54 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "54 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000166", + "lbl" : "55 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "55 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000167", + "lbl" : "56 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "56 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000168", + "lbl" : "57 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "57 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000169", + "lbl" : "58 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "58 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000170", + "lbl" : "59 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "59 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000171", + "lbl" : "60 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "60 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000172", + "lbl" : "61 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "61 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000173", + "lbl" : "62 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "62 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000174", + "lbl" : "63 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "63 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000175", + "lbl" : "64 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "64 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000176", + "lbl" : "65 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "65 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000177", + "lbl" : "66 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "66 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000178", + "lbl" : "67 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "67 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000179", + "lbl" : "68 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000180", + "lbl" : "69 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "69 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000181", + "lbl" : "70 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "70 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000182", + "lbl" : "71 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "71 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000183", + "lbl" : "72 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "72 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000184", + "lbl" : "73 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "73 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000185", + "lbl" : "74 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "74 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000186", + "lbl" : "75 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "75 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000187", + "lbl" : "76 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "76 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000188", + "lbl" : "77 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "77 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000189", + "lbl" : "78 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "78 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000190", + "lbl" : "79 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "79 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000191", + "lbl" : "80 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "80 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000192", + "lbl" : "81 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "81 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000193", + "lbl" : "82 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "82 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000194", + "lbl" : "83 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "83 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000195", + "lbl" : "84 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "84 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000196", + "lbl" : "85 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "85 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000197", + "lbl" : "86 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000198", + "lbl" : "87 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "87 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000199", + "lbl" : "88 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000200", + "lbl" : "89 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "89 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000201", + "lbl" : "90 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "90 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000202", + "lbl" : "91 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "91 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000203", + "lbl" : "92 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "92 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000204", + "lbl" : "93 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "93 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000205", + "lbl" : "94 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "94 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000206", + "lbl" : "95 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "95 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000207", + "lbl" : "96 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000208", + "lbl" : "97 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "97 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000209", + "lbl" : "98 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "98 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000210", + "lbl" : "99 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "99 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000211", + "lbl" : "100 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "100 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000212", + "lbl" : "101 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "101 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000213", + "lbl" : "102 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "102 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000214", + "lbl" : "103 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "103 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000215", + "lbl" : "104 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "104 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000216", + "lbl" : "105 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "105 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000217", + "lbl" : "106 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "106 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000218", + "lbl" : "107 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "107 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000219", + "lbl" : "108 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "108 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000220", + "lbl" : "109 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "109 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000221", + "lbl" : "110 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "110 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000222", + "lbl" : "111 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "111 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000223", + "lbl" : "112 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "112 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000224", + "lbl" : "113 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "113 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000225", + "lbl" : "114 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "114 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000226", + "lbl" : "115 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "115 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000227", + "lbl" : "116 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "116 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000228", + "lbl" : "117 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "117 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000229", + "lbl" : "118 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "118 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000230", + "lbl" : "119 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "119 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000231", + "lbl" : "120 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "120 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000232", + "lbl" : "121 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "121 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000233", + "lbl" : "122 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "122 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000234", + "lbl" : "123 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "123 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000235", + "lbl" : "124 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "124 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000236", + "lbl" : "125 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "125 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000237", + "lbl" : "126 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "126 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000238", + "lbl" : "127 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "127 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000239", + "lbl" : "128 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "128 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000240", + "lbl" : "129 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "129 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000241", + "lbl" : "130 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "130 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000242", + "lbl" : "131 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "131 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000243", + "lbl" : "132 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "132 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000244", + "lbl" : "133 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "133 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000245", + "lbl" : "134 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "134 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000246", + "lbl" : "135 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "135 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000247", + "lbl" : "136 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "136 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000248", + "lbl" : "137 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "137 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000249", + "lbl" : "138 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "138 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000250", + "lbl" : "139 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "139 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000251", + "lbl" : "140 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "140 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000252", + "lbl" : "141 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "141 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000253", + "lbl" : "142 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "142 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000254", + "lbl" : "143 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "143 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000255", + "lbl" : "144 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "144 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000256", + "lbl" : "145 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "145 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000257", + "lbl" : "146 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "146 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000258", + "lbl" : "147 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "147 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000259", + "lbl" : "148 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "148 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000260", + "lbl" : "149 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "149 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000261", + "lbl" : "150 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "150 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000262", + "lbl" : "151 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "151 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000263", + "lbl" : "152 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "152 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000264", + "lbl" : "153 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "153 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000265", + "lbl" : "154 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "154 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000266", + "lbl" : "155 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "155 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000267", + "lbl" : "156 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "156 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000268", + "lbl" : "157 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "157 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000269", + "lbl" : "158 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "158 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000270", + "lbl" : "159 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "159 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000271", + "lbl" : "160 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "160 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000272", + "lbl" : "161 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "161 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000273", + "lbl" : "162 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "162 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000274", + "lbl" : "163 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "163 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000275", + "lbl" : "164 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "164 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000276", + "lbl" : "165 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "165 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000277", + "lbl" : "166 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "166 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000278", + "lbl" : "167 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "167 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000279", + "lbl" : "168 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "168 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000280", + "lbl" : "169 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "169 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000281", + "lbl" : "170 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "170 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000282", + "lbl" : "171 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "171 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000283", + "lbl" : "172 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "172 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000284", + "lbl" : "173 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "173 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000285", + "lbl" : "174 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "174 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000286", + "lbl" : "175 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "175 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000287", + "lbl" : "176 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "176 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000288", + "lbl" : "177 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "177 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000289", + "lbl" : "178 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "178 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000290", + "lbl" : "179 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "179 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000291", + "lbl" : "180 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "180 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000292", + "lbl" : "181 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "181 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000293", + "lbl" : "182 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "182 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000294", + "lbl" : "183 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "183 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000295", + "lbl" : "184 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "184 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000296", + "lbl" : "185 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "185 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000297", + "lbl" : "186 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "186 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000298", + "lbl" : "187 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "187 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000299", + "lbl" : "188 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "188 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000300", + "lbl" : "189 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "189 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000301", + "lbl" : "190 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000302", + "lbl" : "191 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "191 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000303", + "lbl" : "192 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "192 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000304", + "lbl" : "193 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "193 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000305", + "lbl" : "194 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "194 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000306", + "lbl" : "195 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "195 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000307", + "lbl" : "196 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "196 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000308", + "lbl" : "197 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "197 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000309", + "lbl" : "198 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "198 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000310", + "lbl" : "199 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "199 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000311", + "lbl" : "200 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "200 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000312", + "lbl" : "201 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "201 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000313", + "lbl" : "202 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "202 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000314", + "lbl" : "203 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "203 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000315", + "lbl" : "204 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "204 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000316", + "lbl" : "205 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "205 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000317", + "lbl" : "206 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "206 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000318", + "lbl" : "207 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "207 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000319", + "lbl" : "208 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "208 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000320", + "lbl" : "209 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "209 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000321", + "lbl" : "210 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "210 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000322", + "lbl" : "211 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "211 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000323", + "lbl" : "212 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "212 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000324", + "lbl" : "213 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "213 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000325", + "lbl" : "214 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "214 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000326", + "lbl" : "215 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "215 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000327", + "lbl" : "216 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "216 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000328", + "lbl" : "217 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "217 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000329", + "lbl" : "218 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "218 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000330", + "lbl" : "219 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "219 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000331", + "lbl" : "220 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "220 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000332", + "lbl" : "221 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "221 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000333", + "lbl" : "222 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "222 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000334", + "lbl" : "223 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "223 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000335", + "lbl" : "224 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "224 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000336", + "lbl" : "225 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "225 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000337", + "lbl" : "226 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "226 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000338", + "lbl" : "227 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "227 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000339", + "lbl" : "228 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "228 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000340", + "lbl" : "229 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "229 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000341", + "lbl" : "230 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "230 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000342", + "lbl" : "231 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "231 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000343", + "lbl" : "232 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "232 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000344", + "lbl" : "233 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "233 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000345", + "lbl" : "234 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "234 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000346", + "lbl" : "235 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "235 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000347", + "lbl" : "236 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "236 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000348", + "lbl" : "237 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "237 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000349", + "lbl" : "238 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "238 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000350", + "lbl" : "239 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "239 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000351", + "lbl" : "240 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "240 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000352", + "lbl" : "241 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "241 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000353", + "lbl" : "242 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "242 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000354", + "lbl" : "243 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "243 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000355", + "lbl" : "244 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "244 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000356", + "lbl" : "245 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "245 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000357", + "lbl" : "246 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "246 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000358", + "lbl" : "247 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "247 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000359", + "lbl" : "248 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "248 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000360", + "lbl" : "249 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "249 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000361", + "lbl" : "250 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "250 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000362", + "lbl" : "251 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "251 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000363", + "lbl" : "252 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "252 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000364", + "lbl" : "253 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "253 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000365", + "lbl" : "254 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "254 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000366", + "lbl" : "255 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "255 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000367", + "lbl" : "256 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "256 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000368", + "lbl" : "257 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "257 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000369", + "lbl" : "258 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "258 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000370", + "lbl" : "259 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "259 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000371", + "lbl" : "260 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "260 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000372", + "lbl" : "261 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "261 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000373", + "lbl" : "262 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "262 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000374", + "lbl" : "263 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "263 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000375", + "lbl" : "264 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "264 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000376", + "lbl" : "265 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "265 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000377", + "lbl" : "266 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "266 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000378", + "lbl" : "267 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "267 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000379", + "lbl" : "268 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "268 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000380", + "lbl" : "269 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "269 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000381", + "lbl" : "270 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "270 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000382", + "lbl" : "271 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "271 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000383", + "lbl" : "272 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "272 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000384", + "lbl" : "273 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "273 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000385", + "lbl" : "274 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "274 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000386", + "lbl" : "275 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "275 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000387", + "lbl" : "276 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "276 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000388", + "lbl" : "277 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "277 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000389", + "lbl" : "278 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "278 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000390", + "lbl" : "279 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "279 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000391", + "lbl" : "280 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "280 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000392", + "lbl" : "281 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "281 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000393", + "lbl" : "282 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "282 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000394", + "lbl" : "283 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "283 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000395", + "lbl" : "284 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "284 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000396", + "lbl" : "285 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "285 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000397", + "lbl" : "286 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "286 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000398", + "lbl" : "287 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "287 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000399", + "lbl" : "288 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "288 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000400", + "lbl" : "289 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "289 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000401", + "lbl" : "290 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "290 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000402", + "lbl" : "291 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "291 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000403", + "lbl" : "292 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "292 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000404", + "lbl" : "293 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "293 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000405", + "lbl" : "294 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "294 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000406", + "lbl" : "295 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "295 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000407", + "lbl" : "296 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "296 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000408", + "lbl" : "297 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "297 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000409", + "lbl" : "298 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "298 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000410", + "lbl" : "299 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "299 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000411", + "lbl" : "300 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "300 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000412", + "lbl" : "301 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "301 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000413", + "lbl" : "302 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "302 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000414", + "lbl" : "303 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "303 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000415", + "lbl" : "304 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "304 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000416", + "lbl" : "305 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "305 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000417", + "lbl" : "306 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "306 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000418", + "lbl" : "307 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "307 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000419", + "lbl" : "308 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "308 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000420", + "lbl" : "309 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "309 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000421", + "lbl" : "310 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "310 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000422", + "lbl" : "311 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "311 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000423", + "lbl" : "312 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "312 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000424", + "lbl" : "313 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "313 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000425", + "lbl" : "314 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "314 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000426", + "lbl" : "315 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "315 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000427", + "lbl" : "316 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "316 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000428", + "lbl" : "317 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "317 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000429", + "lbl" : "318 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "318 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000430", + "lbl" : "319 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "319 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000431", + "lbl" : "320 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "320 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000432", + "lbl" : "321 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "321 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000433", + "lbl" : "322 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "322 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000434", + "lbl" : "323 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "323 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000435", + "lbl" : "324 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "324 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000436", + "lbl" : "325 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "325 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000437", + "lbl" : "326 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "326 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000438", + "lbl" : "327 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "327 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000439", + "lbl" : "328 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "328 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000440", + "lbl" : "329 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "329 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000441", + "lbl" : "330 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "330 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000442", + "lbl" : "331 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "331 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000443", + "lbl" : "332 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "332 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000444", + "lbl" : "333 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "333 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000445", + "lbl" : "334 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "334 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000446", + "lbl" : "335 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "335 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000447", + "lbl" : "336 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "336 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000448", + "lbl" : "337 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "337 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000449", + "lbl" : "338 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "338 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000450", + "lbl" : "339 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "339 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000451", + "lbl" : "340 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "340 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000452", + "lbl" : "341 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "341 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000453", + "lbl" : "342 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "342 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000454", + "lbl" : "343 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "343 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000455", + "lbl" : "344 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "344 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000456", + "lbl" : "345 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "345 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000457", + "lbl" : "346 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "346 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000458", + "lbl" : "347 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "347 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000459", + "lbl" : "348 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "348 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000460", + "lbl" : "349 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "349 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000461", + "lbl" : "350 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "350 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000462", + "lbl" : "351 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "351 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000463", + "lbl" : "352 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "352 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000464", + "lbl" : "353 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "353 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000465", + "lbl" : "354 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "354 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000466", + "lbl" : "355 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "355 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000467", + "lbl" : "356 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "356 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000468", + "lbl" : "357 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "357 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000469", + "lbl" : "358 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "358 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000470", + "lbl" : "359 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "359 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000471", + "lbl" : "360 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "360 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000472", + "lbl" : "361 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "361 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000473", + "lbl" : "362 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "362 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000474", + "lbl" : "363 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "363 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000475", + "lbl" : "364 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "364 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000476", + "lbl" : "365 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "365 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000477", + "lbl" : "366 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "366 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000478", + "lbl" : "367 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "367 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000479", + "lbl" : "368 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "368 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000480", + "lbl" : "369 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "369 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000481", + "lbl" : "370 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "370 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000482", + "lbl" : "371 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "371 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000483", + "lbl" : "372 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "372 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000484", + "lbl" : "373 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "373 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000485", + "lbl" : "374 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "374 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000486", + "lbl" : "375 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "375 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000487", + "lbl" : "376 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "376 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000488", + "lbl" : "377 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "377 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000489", + "lbl" : "378 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "378 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000490", + "lbl" : "379 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "379 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000491", + "lbl" : "380 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "380 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000492", + "lbl" : "381 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "381 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000493", + "lbl" : "382 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "382 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000494", + "lbl" : "383 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "383 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000495", + "lbl" : "384 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "384 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000496", + "lbl" : "385 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "385 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000497", + "lbl" : "386 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "386 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000498", + "lbl" : "387 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "387 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000499", + "lbl" : "388 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "388 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000500", + "lbl" : "389 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "389 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000501", + "lbl" : "390 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "390 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000502", + "lbl" : "391 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "391 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000503", + "lbl" : "392 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "392 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000504", + "lbl" : "393 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "393 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000505", + "lbl" : "394 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "394 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000506", + "lbl" : "395 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "395 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000507", + "lbl" : "396 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "396 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000508", + "lbl" : "397 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "397 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000509", + "lbl" : "398 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "398 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000510", + "lbl" : "399 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "399 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000511", + "lbl" : "400 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "400 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000512", + "lbl" : "401 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "401 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000513", + "lbl" : "402 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "402 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000514", + "lbl" : "403 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "403 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000515", + "lbl" : "404 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "404 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000516", + "lbl" : "405 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "405 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000517", + "lbl" : "406 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "406 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000518", + "lbl" : "407 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "407 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000519", + "lbl" : "408 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "408 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000520", + "lbl" : "409 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "409 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000521", + "lbl" : "410 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "410 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000522", + "lbl" : "411 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "411 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000523", + "lbl" : "412 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "412 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000524", + "lbl" : "413 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "413 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000525", + "lbl" : "414 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "414 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000526", + "lbl" : "415 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "415 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000527", + "lbl" : "416 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "416 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000528", + "lbl" : "417 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "417 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000529", + "lbl" : "418 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "418 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000530", + "lbl" : "419 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "419 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000531", + "lbl" : "420 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "420 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000532", + "lbl" : "421 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "421 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000533", + "lbl" : "422 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "422 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000534", + "lbl" : "423 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "423 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000535", + "lbl" : "424 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "424 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000536", + "lbl" : "425 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "425 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000537", + "lbl" : "426 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "426 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000538", + "lbl" : "427 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "427 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000539", + "lbl" : "428 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "428 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000540", + "lbl" : "429 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "429 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000541", + "lbl" : "430 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "430 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000542", + "lbl" : "431 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "431 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000543", + "lbl" : "432 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "432 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000544", + "lbl" : "433 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "433 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000545", + "lbl" : "434 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "434 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000546", + "lbl" : "435 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "435 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000547", + "lbl" : "436 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "436 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000548", + "lbl" : "437 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "437 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000549", + "lbl" : "438 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "438 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000550", + "lbl" : "439 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "439 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000551", + "lbl" : "440 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "440 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000552", + "lbl" : "441 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "441 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000553", + "lbl" : "442 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "442 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000554", + "lbl" : "443 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "443 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000555", + "lbl" : "444 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "444 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000556", + "lbl" : "445 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "445 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000557", + "lbl" : "446 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "446 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000558", + "lbl" : "447 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "447 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000559", + "lbl" : "448 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "448 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000560", + "lbl" : "449 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "449 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000561", + "lbl" : "450 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "450 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000562", + "lbl" : "451 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "451 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000563", + "lbl" : "452 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "452 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000564", + "lbl" : "453 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "453 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000565", + "lbl" : "454 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "454 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000566", + "lbl" : "455 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "455 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000567", + "lbl" : "456 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "456 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000568", + "lbl" : "457 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "457 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000569", + "lbl" : "458 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "458 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000570", + "lbl" : "459 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "459 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000571", + "lbl" : "460 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "460 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000572", + "lbl" : "461 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "461 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000573", + "lbl" : "462 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "462 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000574", + "lbl" : "463 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "463 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000575", + "lbl" : "464 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "464 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000576", + "lbl" : "465 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "465 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000577", + "lbl" : "466 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "466 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000578", + "lbl" : "467 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "467 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000579", + "lbl" : "468 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "468 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000580", + "lbl" : "469 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "469 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000581", + "lbl" : "470 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "470 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000582", + "lbl" : "471 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "471 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000583", + "lbl" : "472 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "472 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000584", + "lbl" : "473 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "473 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000585", + "lbl" : "474 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "474 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000586", + "lbl" : "475 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "475 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000587", + "lbl" : "476 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "476 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000588", + "lbl" : "477 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "477 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000589", + "lbl" : "478 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "478 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000590", + "lbl" : "479 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "479 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000591", + "lbl" : "480 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "480 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000592", + "lbl" : "481 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "481 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000593", + "lbl" : "482 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "482 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000594", + "lbl" : "483 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "483 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000595", + "lbl" : "484 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "484 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000596", + "lbl" : "485 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "485 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000597", + "lbl" : "486 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "486 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000598", + "lbl" : "487 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "487 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000599", + "lbl" : "488 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "488 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000600", + "lbl" : "489 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "489 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000601", + "lbl" : "490 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "490 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000602", + "lbl" : "491 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "491 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000603", + "lbl" : "492 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "492 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000604", + "lbl" : "493 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "493 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000605", + "lbl" : "494 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "494 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000606", + "lbl" : "495 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "495 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000607", + "lbl" : "496 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "496 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000608", + "lbl" : "497 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "497 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000609", + "lbl" : "498 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "498 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000610", + "lbl" : "499 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "499 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000611", + "lbl" : "500 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "500 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000612", + "lbl" : "501 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "501 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000613", + "lbl" : "502 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "502 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000614", + "lbl" : "503 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "503 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000615", + "lbl" : "504 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "504 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000616", + "lbl" : "505 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "505 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000617", + "lbl" : "506 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "506 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000618", + "lbl" : "507 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "507 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000619", + "lbl" : "508 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "508 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000620", + "lbl" : "509 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "509 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000621", + "lbl" : "510 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "510 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000622", + "lbl" : "511 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "511 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000623", + "lbl" : "512 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "512 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000624", + "lbl" : "513 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "513 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000625", + "lbl" : "514 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "514 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000626", + "lbl" : "515 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "515 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000627", + "lbl" : "516 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "516 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000628", + "lbl" : "517 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "517 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000629", + "lbl" : "518 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "518 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000630", + "lbl" : "519 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "519 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000631", + "lbl" : "520 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "520 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000632", + "lbl" : "521 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "521 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000633", + "lbl" : "522 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "522 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000634", + "lbl" : "523 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "523 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000635", + "lbl" : "524 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "524 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000636", + "lbl" : "525 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "525 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000637", + "lbl" : "526 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "526 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000638", + "lbl" : "527 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "527 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000639", + "lbl" : "528 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "528 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000640", + "lbl" : "529 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "529 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000641", + "lbl" : "530 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "530 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000642", + "lbl" : "531 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "531 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000643", + "lbl" : "532 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "532 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000644", + "lbl" : "533 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "533 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000645", + "lbl" : "534 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "534 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000646", + "lbl" : "535 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "535 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000647", + "lbl" : "536 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "536 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000648", + "lbl" : "537 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "537 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000649", + "lbl" : "538 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "538 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000650", + "lbl" : "539 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "539 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000651", + "lbl" : "540 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "540 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000652", + "lbl" : "541 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "541 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000653", + "lbl" : "542 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "542 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000654", + "lbl" : "543 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "543 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000655", + "lbl" : "544 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "544 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000656", + "lbl" : "545 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "545 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000657", + "lbl" : "546 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "546 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000658", + "lbl" : "547 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "547 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000659", + "lbl" : "548 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "548 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000660", + "lbl" : "549 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "549 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000661", + "lbl" : "550 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "550 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000662", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000077" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000663", + "lbl" : "Brugia unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unsheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia mature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "mature microfilaria Bma" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-10T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000078" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000664", + "lbl" : "microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "comments" : [ "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000665", + "lbl" : "Brugia microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:25:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000666", + "lbl" : "unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:50:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000667", + "lbl" : "nodular microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found in nodules and ulcers.", + "xrefs" : [ "PMID:1796232", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae" + }, { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000668", + "lbl" : "skin microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found subcutaneously", + "xrefs" : [ "PMID:20772951", "PMID:7797912", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "skin microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000669", + "lbl" : "unfertilized egg Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unfertilized egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-26T11:49:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000670", + "lbl" : "6-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000671", + "lbl" : "7-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000672", + "lbl" : "8-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000673", + "lbl" : "9-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000674", + "lbl" : "10-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000675", + "lbl" : "15-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000676", + "lbl" : "20-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000677", + "lbl" : "Strongyloides free-living stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:51:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000678", + "lbl" : "Strongyloides parasitic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:52:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000679", + "lbl" : "nematode infective stage larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larval stage that is capable of infecting a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Host organism here refers to the main host organism rather than intermediate hosts." ], + "synonyms" : [ { + "pred" : "hasNarrowSynonym", + "val" : "infective larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:21:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000680", + "lbl" : "Strongyloides infective L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "infective L3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides iL3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides infective stage larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:27:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000681", + "lbl" : "Strongyloides parasitic female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic female" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:36:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000682", + "lbl" : "Strongyloides free-living adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living adult" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides free-living L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:48:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000683", + "lbl" : "L4.0 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.0 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:03:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000684", + "lbl" : "L4.1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:06:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000685", + "lbl" : "L4.2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:09:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000686", + "lbl" : "L4.3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:10:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000687", + "lbl" : "L4.4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:11:12Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000688", + "lbl" : "L4.5 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.5 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:13:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000689", + "lbl" : "L4.6 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.6 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:15:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000690", + "lbl" : "L4.7 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.7 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:16:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000691", + "lbl" : "L4.8 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.8 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:18:02Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000692", + "lbl" : "L4.9 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.9 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:20:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000693", + "lbl" : "560 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "560 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T09:27:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000694", + "lbl" : "570 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "570 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T10:07:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000695", + "lbl" : "640 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "640 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:08:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000696", + "lbl" : "650 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "650 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:11:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000697", + "lbl" : "660 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "660 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:13:05Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000698", + "lbl" : "720 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "720 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:16:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000699", + "lbl" : "770 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "770 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:18:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000700", + "lbl" : "780 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "780 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:23:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000701", + "lbl" : "820 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "820 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:25:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000702", + "lbl" : "830 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "830 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:28:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000703", + "lbl" : "850 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "850 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:30:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000704", + "lbl" : "Platyhelminthes life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in Platyhelminthes (flatworms).", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "Platyhelminthes developmental stage" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:14:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000705", + "lbl" : "Platyhelminthes egg", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "egg" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:17:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000706", + "lbl" : "miracidium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:35:26Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000707", + "lbl" : "sporocyst", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:42:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000708", + "lbl" : "cercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "cercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:44:51Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000709", + "lbl" : "schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "somule" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:46:43Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000710", + "lbl" : "Platyhelminthes adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:51:21Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000711", + "lbl" : "Digenean life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental stage of a Digenean (fluke).", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Digeneans include the Schistosomatidae (blood flukes)." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "fluke life stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:11:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000712", + "lbl" : "Cestoda life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a Cestode (tapeworm).", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:18:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000713", + "lbl" : "oncosphere", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "hexcanth" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T13:42:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000714", + "lbl" : "hydatid cyst stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "hydatid cyst" + }, { + "pred" : "hasExactSynonym", + "val" : "metacestode vesicle" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:27:42Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000715", + "lbl" : "protoscolex stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "protoscolex" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:40:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000716", + "lbl" : "metacestode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:070202788X", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacestode stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T15:02:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000717", + "lbl" : "cysticercoid stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-18T11:15:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000718", + "lbl" : "newly excysted juveniles", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "NEJ" + }, { + "pred" : "hasExactSynonym", + "val" : "newly emerged juveniles" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:02:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000719", + "lbl" : "juvenile fluke", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:56:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000720", + "lbl" : "metacercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T13:01:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000721", + "lbl" : "obsolete nematode adult intestinal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult intestinal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:03:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000722", + "lbl" : "obsolete nematode adult lumenal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult lumenal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:13:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000723", + "lbl" : "Onchocerca embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:22:55Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000724", + "lbl" : "3 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "3 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000017" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:54:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000725", + "lbl" : "24 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "24 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000172" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:56:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000726", + "lbl" : "Onchocerca post-embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca post-embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:23:56Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000727", + "lbl" : "Onchocerca microfilaria (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:24:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000728", + "lbl" : "Onchocerca microfilaria (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:28:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000729", + "lbl" : "Strongyloides free living adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:28:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000730", + "lbl" : "Onchocerca L1 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L1 larvae that develop from the microfilariae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000731", + "lbl" : "Onchocerca L2 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L2 larvae that develops from the L1 larvae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:40:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000732", + "lbl" : "Onchocerca L3 larva (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:45:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000733", + "lbl" : "Onchocerca L3 larva (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:48:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000734", + "lbl" : "Onchocerca L3 larva in vitro cultured D1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:50:17Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000735", + "lbl" : "Onchocerca L3 larva in vitro cultured D2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:51:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000736", + "lbl" : "Onchocerca L3 larva in vitro cultured D3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:53:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000737", + "lbl" : "Onchocerca L4 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L4 larvae that develop from L3 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:59:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000738", + "lbl" : "Onchocerca L4 larva in vitro cultured", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:01:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000739", + "lbl" : "Onchocerca adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:02:24Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000740", + "lbl" : "Onchocerca adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:03:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000741", + "lbl" : "Onchocerca life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a nematode of the Onchocerca genus.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:18:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000742", + "lbl" : "Strongyloides free living adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:34:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000793", + "lbl" : "Strongyloides post free-living L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post free-living L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:38:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000794", + "lbl" : "Strongyloides post parasitic L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:39:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000795", + "lbl" : "Strongyloides post parasitic L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:55:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000796", + "lbl" : "Strongyloides post free-living L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:57:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000797", + "lbl" : "11-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000798", + "lbl" : "12-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000799", + "lbl" : "13-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:11Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000800", + "lbl" : "14-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000801", + "lbl" : "newly hatched L1 larval stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", + "xrefs" : [ "PMC:4492366", "WA:Wormatlas", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000802", + "lbl" : "L1 arrest Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", + "xrefs" : [ "PMC:3697962", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 diapause" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:15:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000803", + "lbl" : "C. elegans life stage occurring during embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000804", + "lbl" : "C. elegans life stage occurring post embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs after embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000805", + "lbl" : "C. elegans life stage occurring during elongating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000806", + "lbl" : "C. elegans life stage occurring during 1.5-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000807", + "lbl" : "C. elegans life stage occurring during 2-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 2-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000808", + "lbl" : "C. elegans life stage occurring during 3-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 3-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000809", + "lbl" : "C. elegans life stage occurring during bean embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the bean embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000810", + "lbl" : "C. elegans life stage occurring during comma embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the comma embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000811", + "lbl" : "C. elegans life stage occurring during fully-elongated embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the fully-elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000812", + "lbl" : "C. elegans life stage occurring during proliferating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the proliferating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000813", + "lbl" : "C. elegans life stage occurring during blastula embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the blastula embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000814", + "lbl" : "C. elegans life stage occurring during gastrulation", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the gastrulating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000815", + "lbl" : "C. elegans life stage occurring during enclosing embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the enclosing embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000816", + "lbl" : "C. elegans life stage occurring during adulthood", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the adult life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000817", + "lbl" : "C. elegans life stage occurring during larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000818", + "lbl" : "C. elegans life stage occurring during L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L1 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000819", + "lbl" : "C. elegans life stage occurring during L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L2 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000820", + "lbl" : "C. elegans life stage occurring during L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L3 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000821", + "lbl" : "C. elegans life stage occurring during L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L4 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000822", + "lbl" : "C. elegans life stage by minutes post first cleavage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", + "xrefs" : [ "WB:WBPaper00000653", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000823", + "lbl" : "C. elegans life stage by number of cells", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage classified by the number of cells in the organism.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000824", + "lbl" : "C. elegans life stage occurring during larval molt", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage that occurs during a larval molt", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000825", + "lbl" : "C. elegans life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A life stage of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000826", + "lbl" : "obsolete set of worm life stages", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000827", + "lbl" : "post dauer stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000828", + "lbl" : "post dauer L4 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL4" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000829", + "lbl" : "post dauer adult stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "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" + }, { + "id" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "is defined by" + } ] + } + } ], + "edges" : [ { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000004", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000015", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000016", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000017", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000019", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000020", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000034", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000016" + }, { + "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/CARO_0000000", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0016301", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/GO_0003674" + }, { + "sub" : "http://purl.obolibrary.org/obo/PATO_0000001", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000001", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000002", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "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_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000088" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000022", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000819" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000031", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000034", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000820" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000027" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000032" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000040", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000026" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000045", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000043" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000046", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000029" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000040" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000055", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000056", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000057", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000059", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000064" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000065" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000066" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000067" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000071" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000073", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000070" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000076", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000077", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000663" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000079" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000080" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000012" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000091", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000092", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000093", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000094", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", + "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" : "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000098", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000082" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000101", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000104", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000105", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000109", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000110", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000675" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "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" : "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000133" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000660" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000665" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000077" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000667", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000668", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000669", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000670" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000671" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000672" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000673" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000800" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000111" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000679", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000679" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000683" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000684" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000685" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000686" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000687" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000688" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000689" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000690" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000702" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000704", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000705", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000706", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000707", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000710", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000711", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000712", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000713", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000716", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000718", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000719", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000720", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000723", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000741" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000724", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000724" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000728", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000727" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000733", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000732" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000734", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000734" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000736", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000737", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000740", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000737" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000741", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000742", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000682" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000795", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000797" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000798" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000799" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000801" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000803", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000804", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000805", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000806", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000807", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000808", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000809", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000810", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000811", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000812", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000813", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000814", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000815", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000816", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000817", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000818", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000819", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000820", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000821", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000822", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000823", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000824", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000825", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000827", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000828", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000829", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "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/BFO_0000050", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002131" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000051", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002131" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000062", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002086" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000063", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002222" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000052", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002314" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000079", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000080", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000081", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000085", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000086", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000087", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000091", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000092", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002013", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002017" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002013", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002014", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002013" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002014", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002335" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002015", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002013" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002015", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002336" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002017", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002018" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002018", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002180" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002022", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002023", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002022" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002024", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002022" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002025", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002017" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002086", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002222" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002087", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000062" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002090", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000063" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002131", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002323" + }, { + "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_0002258" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002203", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002286" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002203", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002387" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002203", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002388" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002211", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002212", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002212", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002305" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002213", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002213", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002304" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002215", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002216" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002216", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002216", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002233", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002254", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002258" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002255", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002286" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002255", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002385" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002258", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002324" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002263", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002264", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002286", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002384" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002304", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002304", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004047" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002305", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002305", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004046" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002314", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002502" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002327", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002215" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002329", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002331", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000056" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002331", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002431" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002333", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002333", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002334", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002427" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002335", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002336", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002352", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000056" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002352", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002384", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002324" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002385", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002384" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002387", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002384" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002388", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002387" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002404", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000062" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002404", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002427" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002405", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002087" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002405", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002404" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002407", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002213" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002407", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0012012" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002409", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002212" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002409", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0012012" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002411", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000063" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002411", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002412", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002090" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002412", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002418", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002501" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002427", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002501" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002428", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002428", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002431" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002429", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002428" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002430", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002428" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002431", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002431", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002431", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002436", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002434" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002447", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002436" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002448", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002436" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002448", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0011002" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002449", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002448" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002450", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002448" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002481", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002564" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002500", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002595" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002501", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002506", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002559", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002506" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002563", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002464" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002564", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002563" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002566", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002506" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002578", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002578", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002412" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002584", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002584", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002595" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002595", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002596", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002597", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002596" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002598", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002596" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002608", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002629", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002213" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002629", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002578" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002630", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002212" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002630", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002578" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004031", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004032", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004033", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004034", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004034", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004032" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004035", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004035", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004033" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004046", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004047", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0011002", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002566" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0012011", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0012012", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0012012", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0012011" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0019000", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0019001", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0019000" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0019002", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0019000" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000050", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000051" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000062", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000063" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000052", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000056", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000079", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000085" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000080", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000086" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000081", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000087" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000091", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002022", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002578" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002023", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002630" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002024", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002629" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002087", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002090" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002202", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002203" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002211", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002212", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002335" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002213", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002336" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002233", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002352" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002254", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002255" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002258", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002286" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002327", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002333" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002404", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002405", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002412" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002418", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002427" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002500", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002608" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002559", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002566" + } ], + "domainRangeAxioms" : [ { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000050", + "allValuesFromEdges" : [ { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000002", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000003", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "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_0000017", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000019", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000019" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000020", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + } ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000063", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000056", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000057", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000079", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000034" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000085", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000034" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000087", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000023" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000091", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000016" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002018", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002202", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002211", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002215", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002222", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002233", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002254", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002258", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002334", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002384", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002434", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002448", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002449", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002450", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002501", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002506", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002566", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002595", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0011002", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019000", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/PATO_0000001" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000053", + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000020" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000086", + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000019" ] + } ], + "propertyChainAxioms" : [ { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000062" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000063", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000063" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002329", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/RO_0002215" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000057", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0000057" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0002131" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002254", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0002202" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002584", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0002215" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002314", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0000052", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002131", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002255", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002203", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002211", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0002025" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019000", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0019000" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002213", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002212", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019002", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002212", "http://purl.obolibrary.org/obo/RO_0019001" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019001", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002213", "http://purl.obolibrary.org/obo/RO_0019001" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019002", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002213", "http://purl.obolibrary.org/obo/RO_0019002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002216", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002596", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002211" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002597", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002598", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002213" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0017001", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002233" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002314", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002314", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002331", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002327", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/BFO_0000051" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004031", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/BFO_0000051" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002327", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002017" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002428", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002211" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002448", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002430", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002429", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002213" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004034", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002304" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004035", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002305" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002263", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002411" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002566", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002411", "http://purl.obolibrary.org/obo/RO_0002233" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002566", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002411", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002264", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002418" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002450", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002629", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002449", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002630", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004033", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0004046" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004032", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0004047" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002331", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002428", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/RO_0002211" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002430", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002429", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/RO_0002213" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002407", "http://purl.obolibrary.org/obo/RO_0002629" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002409", "http://purl.obolibrary.org/obo/RO_0002409" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002409", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002409", "http://purl.obolibrary.org/obo/RO_0002630" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002211", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002578", "http://purl.obolibrary.org/obo/RO_0002578" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002629", "http://purl.obolibrary.org/obo/RO_0002407" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002629", "http://purl.obolibrary.org/obo/RO_0002629" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002409", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002630", "http://purl.obolibrary.org/obo/RO_0002409" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002409", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002630", "http://purl.obolibrary.org/obo/RO_0002630" ] + } ] + } ] +} \ No newline at end of file diff --git a/wbls-full.obo b/wbls-full.obo index 17f4b3f..02ae8bc 100644 --- a/wbls-full.obo +++ b/wbls-full.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2023-01-03/wbls-full.owl +data-version: wbls/releases/2023-04-11/wbls-full.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 @@ -15,22 +15,22 @@ remark: Version: 1.04 ontology: wbls/wbls-full property_value: http://purl.org/dc/elements/1.1/description "Ontology about the development and life stages of the C. elegans" xsd:string 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: 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 "2023-01-03" xsd:string +property_value: owl:versionInfo "2023-04-11" xsd:string [Term] id: BFO:0000002 name: continuant def: "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." [] disjoint_from: BFO:0000003 ! occurrent -relationship: part_of BFO:0000002 ! continuant +relationship: part_of BFO:0000002 {all_only="true"} ! continuant [Term] id: BFO:0000003 name: occurrent def: "An entity that has temporal parts and that happens, unfolds or develops through time." [] -relationship: part_of BFO:0000003 ! occurrent +relationship: part_of BFO:0000003 {all_only="true"} ! occurrent [Term] id: BFO:0000004 @@ -38,7 +38,7 @@ name: independent continuant def: "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 -relationship: part_of BFO:0000004 ! independent continuant +relationship: part_of BFO:0000004 {all_only="true"} ! independent continuant [Term] id: BFO:0000015 @@ -58,20 +58,20 @@ 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 disjoint_from: BFO:0000019 ! quality -relationship: part_of BFO:0000017 ! realizable entity +relationship: part_of BFO:0000017 {all_only="true"} ! realizable entity [Term] id: BFO:0000019 name: quality is_a: BFO:0000020 ! specifically dependent continuant -relationship: part_of BFO:0000019 ! quality +relationship: part_of BFO:0000019 {all_only="true"} ! quality [Term] id: BFO:0000020 name: specifically dependent continuant def: "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 ! specifically dependent continuant +relationship: part_of BFO:0000020 {all_only="true"} ! specifically dependent continuant [Term] id: BFO:0000023 @@ -93,50 +93,45 @@ is_a: BFO:0000004 ! independent continuant [Term] id: CARO:0000000 name: anatomical entity -is_a: CARO:0030000 ! biological entity -property_value: IAO:0000412 http://purl.obolibrary.org/obo/caro.owl - -[Term] -id: CARO:0030000 -name: biological entity +def: "A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex." [CAROC:Brownsville2014] +comment: Following BFO, material anatomical entities may have immaterial parts (the lumen of your stomach is part of your stomach). The granularity limit follows the limits set by the Gene Ontology on the granularity limit for GO:cellular_component. Note that substances produced by an organism (sweat, feaces, urine) do not need to be part of an organism to qualify as an anatomical structure. is_a: BFO:0000004 ! independent continuant [Term] id: GO:0003674 name: molecular_function -is_a: BFO:0000015 ! process -property_value: IAO:0000589 "molecular process" xsd:string - -[Term] -id: GO:0003824 -name: catalytic activity -is_a: GO:0003674 ! 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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process." [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. +synonym: "molecular function" EXACT [] [Term] id: GO:0008150 name: biological_process -is_a: BFO:0000015 ! process +def: "A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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] +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 +created_by: jl +creation_date: 2012-09-19T15:05:24Z [Term] id: GO:0016301 name: kinase activity -is_a: GO:0016772 ! transferase activity, transferring phosphorus-containing groups - -[Term] -id: GO:0016740 -name: transferase activity -is_a: GO:0003824 ! catalytic activity - -[Term] -id: GO:0016772 -name: transferase activity, transferring phosphorus-containing groups -is_a: GO:0016740 ! transferase activity +def: "Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule." [ISBN:0198506732] +comment: Note that this term encompasses all activities that transfer a single phosphate group; although ATP is by far the most common phosphate donor, reactions using other phosphate donors are included in this term. +synonym: "phosphokinase activity" EXACT [] +xref: Reactome:R-HSA-6788855 "FN3KRP phosphorylates PsiAm, RibAm" +xref: Reactome:R-HSA-6788867 "FN3K phosphorylates ketosamines" +is_a: GO:0003674 ! molecular_function [Term] 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 -property_value: IAO:0000589 "quality (PATO)" xsd:string [Term] id: WBls:0000001 @@ -9632,7 +9627,7 @@ inverse_of: RO:0000057 ! has participant id: RO:0000057 name: has participant def: "a relation between a process and a continuant, in which the continuant is somehow involved in the process" [] -property_value: http://purl.org/dc/elements/1.1/source http://www.obofoundry.org/ro/#OBO_REL:has_participant xsd:string +property_value: http://purl.org/dc/elements/1.1/source "http://www.obofoundry.org/ro/#OBO_REL:has_participant" xsd:string property_value: IAO:0000111 "has participant" xsd:string property_value: IAO:0000112 "this blood coagulation has participant this blood clot" xsd:string property_value: IAO:0000112 "this investigation has participant this investigator" xsd:string @@ -9828,6 +9823,7 @@ name: immediately precedes comment: X immediately_precedes_Y iff: end(X) simultaneous_with start(Y) subset: ro-eco property_value: IAO:0000117 "David Osumi-Sutherland" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-7073-9172 property_value: IAO:0000118 "ends_at_start_of" xsd:string property_value: IAO:0000118 "meets" xsd:string property_value: RO:0002575 BFO:0000063 @@ -9868,10 +9864,10 @@ name: develops from def: "x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y" [] comment: This is the transitive form of the develops from relation property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "David Osumi-Sutherland" xsd:string -property_value: IAO:0000117 "Melissa Haendel" xsd:string -property_value: IAO:0000117 "Terry Meehan" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0001-9114-8737 +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 +property_value: IAO:0000117 https://orcid.org/0000-0002-7073-9172 +property_value: IAO:0000117 https://orcid.org/0000-0003-1980-3228 domain: BFO:0000004 ! independent continuant range: BFO:0000004 ! independent continuant is_transitive: true @@ -9884,9 +9880,9 @@ name: develops into def: "inverse of develops from" [] subset: RO:0002259 property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "David Osumi-Sutherland" xsd:string -property_value: IAO:0000117 "Terry Meehan" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 +property_value: IAO:0000117 https://orcid.org/0000-0002-7073-9172 +property_value: IAO:0000117 https://orcid.org/0000-0003-1980-3228 is_transitive: true is_a: RO:0002286 ! developmentally succeeded by is_a: RO:0002387 ! has potential to develop into @@ -9899,9 +9895,9 @@ def: "p regulates q iff p is causally upstream of q, the execution of p is not c subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_go_ontology subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "David Hill" xsd:string -property_value: IAO:0000117 "Tanya Berardini" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0001-7476-6306 +property_value: IAO:0000117 https://orcid.org/0000-0002-3837-8864 +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 "GO" xsd:string property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000232 "Regulation precludes parthood; the regulatory process may not be within the regulated process." xsd:string @@ -9922,7 +9918,7 @@ def: "p negatively regulates q iff p regulates q, and p decreases the rate or ma subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_go_ontology subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000589 "negatively regulates (process to process)" xsd:string property_value: RO:0004050 RO:0002211 @@ -9937,7 +9933,7 @@ def: "p positively regulates q iff p regulates q, and p increases the rate or ma subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_go_ontology subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000589 "positively regulates (process to process)" xsd:string property_value: RO:0004049 RO:0002211 @@ -9954,7 +9950,7 @@ def: "A relation between a material entity (such as a cell) and a process, in wh subset: ro-eco property_value: IAO:0000112 "mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974)" xsd:string property_value: IAO:0000112 "osteoclast SubClassOf 'capable of' some 'bone resorption'" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "has function realized in" xsd:string property_value: IAO:0000119 http://www.ncbi.nlm.nih.gov/pubmed/20123131 property_value: IAO:0000119 http://www.ncbi.nlm.nih.gov/pubmed/21208450 @@ -9967,7 +9963,7 @@ is_a: RO:0002216 ! capable of part of id: RO:0002216 name: capable of part of def: "c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "has function in" xsd:string property_value: seeAlso http://purl.obolibrary.org/obo/ro/docs/reflexivity/ holds_over_chain: RO:0002215 part_of {http://purl.obolibrary.org/obo/RO_0002582="true"} @@ -9979,9 +9975,9 @@ id: RO:0002222 name: temporally related to comment: A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations. subset: ro-eco -property_value: http://purl.org/dc/terms/source https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1 xsd:anyURI +property_value: http://purl.org/dc/terms/source "https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1" xsd:anyURI property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 https://en.wikipedia.org/wiki/Allen%27s_interval_algebra property_value: IAO:0000232 "Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends." xsd:string domain: BFO:0000003 ! occurrent @@ -9996,7 +9992,7 @@ subset: http://purl.obolibrary.org/obo/valid_for_go_ontology subset: http://purl.obolibrary.org/obo/valid_for_gocam subset: ro-eco property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "consumes" xsd:string domain: BFO:0000015 ! process is_a: RO:0000057 ! has participant @@ -10008,7 +10004,7 @@ name: has developmental contribution from def: "x has developmental contribution from y iff x has some part z such that z develops from y" [] property_value: IAO:0000112 "Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong]" xsd:string property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 domain: CARO:0000000 ! anatomical entity range: CARO:0000000 ! anatomical entity holds_over_chain: BFO:0000051 RO:0002202 @@ -10021,7 +10017,7 @@ name: developmentally contributes to def: "inverse of has developmental contribution from" [] subset: RO:0002259 property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 holds_over_chain: RO:0002203 part_of is_a: RO:0002286 ! developmentally succeeded by is_a: RO:0002385 ! has potential to developmentally contribute to @@ -10033,7 +10029,7 @@ def: "Candidate definition: x developmentally related to y if and only if there comment: This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from property_value: IAO:0000114 IAO:0000125 property_value: IAO:0000116 "false" xsd:boolean -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "In general you should not use this relation to make assertions - use one of the more specific relations below this one" xsd:string domain: BFO:0000002 ! continuant range: BFO:0000002 ! continuant @@ -10066,7 +10062,7 @@ id: RO:0002286 name: developmentally succeeded by def: "Inverse of developmentally preceded by" [] property_value: IAO:0000114 IAO:0000125 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002384 ! has developmental potential involving [Typedef] @@ -10076,7 +10072,7 @@ def: "p is causally upstream of, positive effect q iff p is casually upstream of comment: holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: http://purl.org/dc/terms/creator "cjm" xsd:string +property_value: http://purl.org/dc/terms/creator https://orcid.org/0000-0002-6601-2165 property_value: RO:0004049 RO:0002411 is_a: RO:0002411 ! causally upstream of is_a: RO:0004047 ! causally upstream of or within, positive effect @@ -10087,7 +10083,7 @@ name: causally upstream of, negative effect def: "p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q." [] subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: http://purl.org/dc/terms/creator "cjm" xsd:string +property_value: http://purl.org/dc/terms/creator https://orcid.org/0000-0002-6601-2165 property_value: RO:0004050 RO:0002411 is_a: RO:0002411 ! causally upstream of is_a: RO:0004046 ! causally upstream of or within, negative effect @@ -10097,7 +10093,7 @@ id: RO:0002314 name: characteristic of part of def: "q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w." [] property_value: IAO:0000116 "Because part_of is transitive, inheres in is a sub-relation of characteristic of part of" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "inheres in part of" xsd:string property_value: IAO:0000119 http://www.ncbi.nlm.nih.gov/pubmed/20064205 property_value: RO:0001900 RO:0001901 @@ -10110,7 +10106,7 @@ transitive_over: part_of ! part_of id: RO:0002323 name: mereotopologically related to def: "A mereological relationship or a topological relationship" [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships" xsd:string property_value: RO:0001900 RO:0001901 @@ -10118,7 +10114,7 @@ property_value: RO:0001900 RO:0001901 id: RO:0002324 name: developmentally related to def: "A relationship that holds between entities participating in some developmental process (GO:0032502)" [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development" xsd:string [Typedef] @@ -10127,7 +10123,7 @@ name: enables def: "c enables p iff c is capable of p and c acts to execute p." [] subset: http://purl.obolibrary.org/obo/valid_for_go_gp2term property_value: IAO:0000112 "a particular instances of akt-2 enables some instance of protein kinase activity" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "catalyzes" xsd:string property_value: IAO:0000118 "executes" xsd:string property_value: IAO:0000118 "has" xsd:string @@ -10143,14 +10139,14 @@ transitive_over: RO:0002017 ! has component activity id: RO:0002328 name: functionally related to def: "A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "This is a grouping relation that collects relations used for the purpose of connecting structure and function" xsd:string [Typedef] id: RO:0002329 name: part of structure that is capable of def: "this relation holds between c and p when c is part of some c', and c' is capable of p." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "false" xsd:boolean holds_over_chain: part_of RO:0002215 {http://purl.obolibrary.org/obo/RO_0002581="true"} is_a: RO:0002328 ! functionally related to @@ -10159,7 +10155,7 @@ is_a: RO:0002328 ! functionally related to id: RO:0002331 name: involved in def: "c involved_in p if and only if c enables some process p', and p' is part of p" [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "actively involved in" xsd:string property_value: IAO:0000118 "enables part of" xsd:string property_value: seeAlso Involved:in @@ -10173,7 +10169,7 @@ id: RO:0002333 name: enabled by def: "inverse of enables" [] subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0000057 ! has participant is_a: RO:0002328 ! functionally related to @@ -10182,7 +10178,7 @@ id: RO:0002334 name: regulated by def: "inverse of regulates" [] subset: RO:0002259 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000589 "regulated by (processual)" xsd:string domain: BFO:0000015 ! process range: BFO:0000015 ! process @@ -10194,7 +10190,7 @@ id: RO:0002335 name: negatively regulated by def: "inverse of negatively regulates" [] subset: RO:0002259 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002334 ! regulated by [Typedef] @@ -10202,7 +10198,7 @@ id: RO:0002336 name: positively regulated by def: "inverse of positively regulates" [] subset: RO:0002259 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002334 ! regulated by [Typedef] @@ -10211,7 +10207,7 @@ name: input of def: "inverse of has input" [] subset: ro-eco subset: RO:0002259 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0000056 ! participates in is_a: RO:0002328 ! functionally related to @@ -10220,7 +10216,7 @@ id: RO:0002384 name: has developmental potential involving def: "x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)." [] property_value: IAO:0000114 IAO:0000428 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 domain: CARO:0000000 ! anatomical entity range: CARO:0000000 ! anatomical entity is_a: RO:0002324 ! developmentally related to @@ -10230,7 +10226,7 @@ id: RO:0002385 name: has potential to developmentally contribute to def: "x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y" [] property_value: IAO:0000114 IAO:0000428 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002384 ! has developmental potential involving [Typedef] @@ -10238,7 +10234,7 @@ id: RO:0002387 name: has potential to develop into def: "x has the potential to develop into y iff x develops into y or if x is capable of developing into y" [] property_value: IAO:0000114 IAO:0000428 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002384 ! has developmental potential involving [Typedef] @@ -10246,7 +10242,7 @@ id: RO:0002388 name: has potential to directly develop into def: "x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y" [] property_value: IAO:0000114 IAO:0000428 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002387 ! has potential to develop into [Typedef] @@ -10254,7 +10250,7 @@ id: RO:0002404 name: causally downstream of def: "inverse of upstream of" [] property_value: IAO:0000114 IAO:0000428 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: preceded_by ! preceded_by is_a: RO:0002427 ! causally downstream of or within inverse_of: RO:0002411 ! causally upstream of @@ -10263,7 +10259,7 @@ inverse_of: RO:0002411 ! causally upstream of id: RO:0002405 name: immediately causally downstream of property_value: IAO:0000114 IAO:0000428 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002404 ! causally downstream of is_a: starts_at_end_of ! immediately preceded by inverse_of: RO:0002412 ! immediately causally upstream of @@ -10272,7 +10268,7 @@ inverse_of: RO:0002412 ! immediately causally upstream of id: RO:0002407 name: indirectly positively regulates def: "p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "indirectly activates" xsd:string property_value: RO:0002579 RO:0002213 holds_over_chain: RO:0002409 RO:0002409 @@ -10287,7 +10283,7 @@ transitive_over: RO:0002629 ! directly positively regulates id: RO:0002409 name: indirectly negatively regulates def: "p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "indirectly inhibits" xsd:string property_value: RO:0002579 RO:0002212 holds_over_chain: RO:0002630 RO:0002409 @@ -10302,7 +10298,7 @@ id: RO:0002410 name: causally related to def: "relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause." [https://en.wikipedia.org/wiki/Causality] property_value: IAO:0000116 "This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents.\n\nTo define causal relations in an activity-flow type network, we make use of 3 primitives:\n\n * Temporal: how do the intervals of the two occurrents relate? \n * Is the causal relation regulatory?\n * Is the influence positive or negative?\n\nThe first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified.\n\nFor the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule.\n\nFor the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral.\n\nEach of these 3 primitives can be composed to yield a cross-product of different relation types." xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." xsd:string [Typedef] @@ -10311,7 +10307,7 @@ name: causally upstream of def: "p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q." [] subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_transitive: true is_a: BFO:0000063 ! precedes is_a: RO:0002418 ! causally upstream of or within @@ -10320,7 +10316,7 @@ is_a: RO:0002418 ! causally upstream of or within id: RO:0002412 name: immediately causally upstream of def: "p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: RO:0002575 RO:0002411 is_a: RO:0002090 ! immediately precedes is_a: RO:0002411 ! causally upstream of @@ -10331,7 +10327,7 @@ name: causally upstream of or within def: "p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q." [] synonym: "affects" RELATED [] property_value: IAO:0000116 "We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "influences (processual)" xsd:string is_transitive: true is_a: RO:0002501 ! causal relation between processes @@ -10342,7 +10338,7 @@ id: RO:0002427 name: causally downstream of or within def: "inverse of causally upstream of or within" [] subset: RO:0002259 -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations is_transitive: true is_a: RO:0002501 ! causal relation between processes @@ -10351,7 +10347,7 @@ is_a: RO:0002501 ! causal relation between processes id: RO:0002428 name: involved in regulation of def: "c involved in regulation of p if c is involved in some p' and p' regulates some p" [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 holds_over_chain: RO:0002327 RO:0002211 holds_over_chain: RO:0002331 RO:0002211 is_a: RO:0002263 ! acts upstream of @@ -10361,7 +10357,7 @@ is_a: RO:0002431 ! involved in or involved in regulation of id: RO:0002429 name: involved in positive regulation of def: "c involved in regulation of p if c is involved in some p' and p' positively regulates some p" [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: RO:0004049 RO:0002428 holds_over_chain: RO:0002327 RO:0002213 holds_over_chain: RO:0002331 RO:0002213 @@ -10371,7 +10367,7 @@ is_a: RO:0002428 ! involved in regulation of id: RO:0002430 name: involved in negative regulation of def: "c involved in regulation of p if c is involved in some p' and p' negatively regulates some p" [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: RO:0004050 RO:0002428 holds_over_chain: RO:0002327 RO:0002212 holds_over_chain: RO:0002331 RO:0002212 @@ -10382,7 +10378,7 @@ id: RO:0002431 name: involved in or involved in regulation of def: "c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p" [] property_value: IAO:0000116 "OWL does not allow defining object properties via a Union" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "involved in or reguates" xsd:string is_a: RO:0002264 ! acts upstream of or within is_a: RO:0002328 ! functionally related to @@ -10394,12 +10390,12 @@ name: interacts with def: "A relationship that holds between two entities in which the processes executed by the two entities are causally connected." [] subset: ro-eco synonym: "in pairwise interaction with" EXACT [] -property_value: closeMatch http://purl.obolibrary.org/obo/MI_0914 xsd:anyURI +property_value: closeMatch "http://purl.obolibrary.org/obo/MI_0914" xsd:anyURI property_value: IAO:0000116 "Considering relabeling as 'pairwise interacts with'" xsd:anyURI property_value: IAO:0000116 "This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact." xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules." xsd:string -property_value: seeAlso http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ xsd:anyURI +property_value: seeAlso "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" xsd:anyURI domain: BFO:0000040 ! material entity range: BFO:0000040 ! material entity is_symmetric: true @@ -10408,8 +10404,8 @@ is_symmetric: true id: RO:0002436 name: molecularly interacts with def: "An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other." [] -property_value: closeMatch http://purl.obolibrary.org/obo/MI_0915 xsd:anyURI -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: closeMatch "http://purl.obolibrary.org/obo/MI_0915" xsd:anyURI +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "binds" xsd:string property_value: IAO:0000118 "molecularly binds with" xsd:string property_value: seeAlso ECO:0000353 @@ -10420,7 +10416,7 @@ is_a: RO:0002434 ! interacts with id: RO:0002447 name: phosphorylates property_value: IAO:0000116 "Axiomatization to GO to be added later" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000118 "An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y." xsd:string is_a: RO:0002436 ! molecularly interacts with @@ -10429,8 +10425,8 @@ id: RO:0002448 name: directly regulates activity of def: "The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B." [] synonym: "molecularly controls" EXACT [] -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "Vasundra Touré" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 +property_value: IAO:0000117 https://orcid.org/0000-0003-4639-4431 domain: BFO:0000040 ! material entity range: BFO:0000040 ! material entity is_a: RO:0002436 ! molecularly interacts with @@ -10441,8 +10437,8 @@ id: RO:0002449 name: directly negatively regulates activity of def: "The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B." [] synonym: "molecularly decreases activity of" EXACT [] -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "Vasundra Touré" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 +property_value: IAO:0000117 https://orcid.org/0000-0003-4639-4431 property_value: IAO:0000118 "directly inhibits" xsd:string domain: BFO:0000040 ! material entity range: BFO:0000040 ! material entity @@ -10453,8 +10449,8 @@ id: RO:0002450 name: directly positively regulates activity of def: "The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B." [] synonym: "molecularly increases activity of" EXACT [] -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "Vasundra Touré" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 +property_value: IAO:0000117 https://orcid.org/0000-0003-4639-4431 property_value: IAO:0000118 "directly activates" xsd:string domain: BFO:0000040 ! material entity range: BFO:0000040 ! material entity @@ -10463,13 +10459,13 @@ is_a: RO:0002448 ! directly regulates activity of [Typedef] id: RO:0002464 name: helper property (not for use in curation) -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000232 "This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning." xsd:string [Typedef] id: RO:0002481 name: is kinase activity -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002564 ! molecular interaction relation helper property [Typedef] @@ -10484,7 +10480,7 @@ inverse_of: RO:0002608 ! process has causal agent id: RO:0002501 name: causal relation between processes def: "p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000232 "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." xsd:string domain: BFO:0000003 ! occurrent @@ -10494,14 +10490,14 @@ is_a: RO:0002410 ! causally related to [Typedef] id: RO:0002502 name: depends on -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: seeAlso BFO:0000169 [Typedef] id: RO:0002506 name: causal relation between entities property_value: IAO:0000116 "The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000232 "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." xsd:string domain: BFO:0000002 ! continuant @@ -10511,7 +10507,7 @@ is_a: RO:0002410 ! causally related to [Typedef] id: RO:0002559 name: causally influenced by -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000589 "causally influenced by (entity-centric)" xsd:string is_a: RO:0002506 ! causal relation between entities @@ -10520,23 +10516,23 @@ inverse_of: RO:0002566 ! causally influences [Typedef] id: RO:0002563 name: interaction relation helper property -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: seeAlso http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29 -property_value: seeAlso http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ xsd:anyURI +property_value: seeAlso "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" xsd:anyURI is_a: RO:0002464 ! helper property (not for use in curation) [Typedef] id: RO:0002564 name: molecular interaction relation helper property -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 is_a: RO:0002563 ! interaction relation helper property [Typedef] id: RO:0002566 name: causally influences def: "The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size)." [] -property_value: IAO:0000117 "Chris Mungall" xsd:string -property_value: IAO:0000117 "Vasundra Touré" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 +property_value: IAO:0000117 https://orcid.org/0000-0003-4639-4431 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000589 "causally influences (entity-centric)" xsd:string domain: BFO:0000002 ! continuant @@ -10550,7 +10546,7 @@ def: "p directly regulates q iff p is immediately causally upstream of q and p r subset: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension subset: http://purl.obolibrary.org/obo/valid_for_go_ontology subset: http://purl.obolibrary.org/obo/valid_for_gocam -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations property_value: IAO:0000589 "directly regulates (processual)" xsd:string property_value: RO:0002575 RO:0002211 @@ -10562,7 +10558,7 @@ id: RO:0002584 name: has part structure that is capable of def: "s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p" [] property_value: IAO:0000112 "gland SubClassOf 'has part structure that is capable of' some 'secretion by cell'" xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 holds_over_chain: BFO:0000051 RO:0002215 is_a: RO:0002328 ! functionally related to is_a: RO:0002595 ! causal relation between material entity and a process @@ -10572,7 +10568,7 @@ id: RO:0002595 name: causal relation between material entity and a process def: "A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity." [] property_value: IAO:0000116 "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." xsd:string -property_value: IAO:0000117 "Chris Mungall" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0002-6601-2165 property_value: IAO:0000119 http://purl.obolibrary.org/obo/ro/docs/causal-relations domain: BFO:0000040 ! material entity range: BFO:0000015 ! process @@ -10643,7 +10639,7 @@ name: enables subfunction def: "Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P." [] holds_over_chain: RO:0002327 BFO:0000051 is_a: RO:0002328 ! functionally related to -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-01-25T23:20:13Z [Typedef] @@ -10654,7 +10650,7 @@ property_value: RO:0004049 RO:0002264 property_value: seeAlso http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within,_positive_effect holds_over_chain: RO:0002327 RO:0004047 is_a: RO:0002264 ! acts upstream of or within -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-01-26T23:49:30Z [Typedef] @@ -10664,7 +10660,7 @@ subset: http://purl.obolibrary.org/obo/valid_for_go_gp2term property_value: RO:0004050 RO:0002264 holds_over_chain: RO:0002327 RO:0004046 is_a: RO:0002264 ! acts upstream of or within -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-01-26T23:49:51Z [Typedef] @@ -10677,7 +10673,7 @@ property_value: seeAlso http://wiki.geneontology.org/index.php/Acts_upstream_of, holds_over_chain: RO:0002327 RO:0002304 is_a: RO:0002263 ! acts upstream of is_a: RO:0004032 ! acts upstream of or within, positive effect -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-01-26T23:53:14Z [Typedef] @@ -10690,7 +10686,7 @@ property_value: seeAlso http://wiki.geneontology.org/index.php/Acts_upstream_of, holds_over_chain: RO:0002327 RO:0002305 is_a: RO:0002263 ! acts upstream of is_a: RO:0004033 ! acts upstream of or within, negative effect -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-01-26T23:53:22Z [Typedef] @@ -10698,7 +10694,7 @@ id: RO:0004046 name: causally upstream of or within, negative effect property_value: RO:0004050 RO:0002418 is_a: RO:0002418 ! causally upstream of or within -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-03-13T23:55:05Z [Typedef] @@ -10706,14 +10702,14 @@ id: RO:0004047 name: causally upstream of or within, positive effect property_value: RO:0004049 RO:0002418 is_a: RO:0002418 ! causally upstream of or within -created_by: cjm +created_by: https://orcid.org/0000-0002-6601-2165 creation_date: 2018-03-13T23:55:19Z [Typedef] id: RO:0011002 name: regulates activity of def: "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." [] -property_value: IAO:0000117 "Vasundra Touré" xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0003-4639-4431 domain: BFO:0000040 ! material entity range: BFO:0000040 ! material entity is_a: RO:0002566 ! causally influences @@ -10741,8 +10737,8 @@ name: device utilizes material def: "X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y." [] synonym: "utilizes" BROAD [] property_value: IAO:0000112 "A diagnostic testing device utilizes a specimen." xsd:string -property_value: IAO:0000117 https://orcid.org/0000-0001-9625-1899 xsd:string -property_value: IAO:0000117 https://orcid.org/0000-0003-2620-0345 xsd:string +property_value: IAO:0000117 https://orcid.org/0000-0001-9625-1899 +property_value: IAO:0000117 https://orcid.org/0000-0003-2620-0345 property_value: IAO:0000232 "A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input." xsd:string property_value: IAO:0000232 "See github ticket https://github.com/oborel/obo-relations/issues/497" xsd:string holds_over_chain: RO:0002215 RO:0002233 @@ -10803,7 +10799,7 @@ property_value: RO:0040042 BFO:0000020 property_value: RO:0040042 BFO:0000031 property_value: seeAlso http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections property_value: seeAlso http://ontologydesignpatterns.org/wiki/Submissions:PartOf -property_value: seeAlso http://www.obofoundry.org/ro/#OBO_REL:part_of xsd:string +property_value: seeAlso "http://www.obofoundry.org/ro/#OBO_REL:part_of" xsd:string is_transitive: true is_a: RO:0002131 ! overlaps inverse_of: BFO:0000051 ! has part @@ -10815,7 +10811,7 @@ name: preceded_by def: "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." [] subset: ro-eco xref: BFO:0000062 -property_value: http://purl.org/dc/elements/1.1/source http://www.obofoundry.org/ro/#OBO_REL:preceded_by xsd:string +property_value: http://purl.org/dc/elements/1.1/source "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" xsd:string property_value: IAO:0000111 "preceded by" xsd:string property_value: IAO:0000116 "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." xsd:string property_value: IAO:0000118 "is preceded by" xsd:string diff --git a/wbls-full.owl b/wbls-full.owl index 850b36c..fdddff0 100644 --- a/wbls-full.owl +++ b/wbls-full.owl @@ -7,6 +7,7 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:swrl="http://www.w3.org/2003/11/swrl#" @@ -16,19 +17,19 @@ 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 http://creativecommons.org/licenses/by/4.0/ - OBO-Edit 2.2-rc1 - 15:11:2017 12:24 - worm_development - 1.2 - chris-grove - Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. - Version: 1.04 - 2023-01-03 + OBO-Edit 2.2-rc1 + 15:11:2017 12:24 + worm_development + 1.2 + chris-grove + Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. + Version: 1.04 + 2023-04-11 @@ -65,8 +66,7 @@ - - definition + definition @@ -107,12 +107,6 @@ - - - - - - @@ -335,7 +329,7 @@ - has_alternative_id + has_alternative_id @@ -343,7 +337,7 @@ - has_broad_synonym + has_broad_synonym @@ -351,7 +345,7 @@ - database_cross_reference + database_cross_reference @@ -359,7 +353,7 @@ - has_exact_synonym + has_exact_synonym @@ -367,7 +361,7 @@ - has_narrow_synonym + has_narrow_synonym @@ -375,7 +369,7 @@ - has_obo_format_version + has_obo_format_version @@ -383,7 +377,7 @@ - has_obo_namespace + has_obo_namespace @@ -391,7 +385,7 @@ - has_related_synonym + has_related_synonym @@ -417,7 +411,7 @@ - shorthand + shorthand @@ -460,6 +454,12 @@ + + + + + + - Chris Mungall + This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning. helper property (not for use in curation) @@ -1997,7 +1998,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + is kinase activity @@ -2022,7 +2023,7 @@ For example, A and B may be gene products and binding of B by A positively regul p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q. - Chris Mungall + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. causal relation between processes @@ -2033,7 +2034,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + depends on @@ -2047,7 +2048,7 @@ For example, A and B may be gene products and binding of B by A positively regul The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch - Chris Mungall + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. causal relation between entities @@ -2060,7 +2061,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + causally influenced by (entity-centric) causally influenced by @@ -2072,7 +2073,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + interaction relation helper property http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ @@ -2084,7 +2085,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + molecular interaction relation helper property @@ -2107,8 +2108,8 @@ For example, A and B may be gene products and binding of B by A positively regul The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size). - Chris Mungall - Vasundra Touré + + causally influences (entity-centric) causally influences @@ -2122,7 +2123,7 @@ For example, A and B may be gene products and binding of B by A positively regul p directly regulates q iff p is immediately causally upstream of q and p regulates q. - Chris Mungall + directly regulates (processual) @@ -2145,7 +2146,7 @@ For example, A and B may be gene products and binding of B by A positively regul gland SubClassOf 'has part structure that is capable of' some 'secretion by cell' s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p - Chris Mungall + has part structure that is capable of @@ -2159,7 +2160,7 @@ For example, A and B may be gene products and binding of B by A positively regul A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity. Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. - Chris Mungall + causal relation between material entity and a process @@ -2267,7 +2268,7 @@ For example, A and B may be gene products and binding of B by A positively regul Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P. - cjm + 2018-01-25T23:20:13Z enables subfunction @@ -2283,7 +2284,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-01-26T23:49:30Z acts upstream of or within, positive effect @@ -2301,7 +2302,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-01-26T23:49:51Z acts upstream of or within, negative effect @@ -2320,7 +2321,7 @@ For example, A and B may be gene products and binding of B by A positively regul c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive - cjm + 2018-01-26T23:53:14Z acts upstream of, positive effect @@ -2340,7 +2341,7 @@ For example, A and B may be gene products and binding of B by A positively regul c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative - cjm + 2018-01-26T23:53:22Z acts upstream of, negative effect @@ -2354,7 +2355,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-03-13T23:55:05Z causally upstream of or within, negative effect @@ -2366,7 +2367,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-03-13T23:55:19Z causally upstream of or within, positive effect @@ -2380,7 +2381,7 @@ For example, A and B may be gene products and binding of B by A positively regul The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B. - Vasundra Touré + regulates activity of @@ -2420,8 +2421,8 @@ For example, A and B may be gene products and binding of B by A positively regul A diagnostic testing device utilizes a specimen. X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y. - https://orcid.org/0000-0001-9625-1899 - https://orcid.org/0000-0003-2620-0345 + + A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input. See github ticket https://github.com/oborel/obo-relations/issues/497 2021-11-08T12:00:00Z @@ -2653,80 +2654,99 @@ For example, A and B may be gene products and binding of B by A positively regul - - - anatomical entity - - - - - - - - biological entity + A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex. + CARO:0000000 + Following BFO, material anatomical entities may have immaterial parts (the lumen of your stomach is part of your stomach). The granularity limit follows the limits set by the Gene Ontology on the granularity limit for GO:cellular_component. Note that substances produced by an organism (sweat, feaces, urine) do not need to be part of an organism to qualify as an anatomical structure. + anatomical entity + + + + A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex. + CAROC:Brownsville2014 + - - molecular process + 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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process. + 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. molecular_function - - - - - - - - catalytic activity - + + + + 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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process. + GOC:pdt + - + A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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. + jl + 2012-09-19T15:05:24Z + Wikipedia:Biological_process + biological process + physiological process + single organism process + single-organism process + GO:0008150 + 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 + + + + A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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 + - + true + Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule. + Reactome:R-HSA-6788855 + Reactome:R-HSA-6788867 + phosphokinase activity + GO:0016301 + Note that this term encompasses all activities that transfer a single phosphate group; although ATP is by far the most common phosphate donor, reactions using other phosphate donors are included in this term. kinase activity - - - - - - - - transferase activity - - - - - - - - - transferase activity, transferring phosphorus-containing groups - + + + + Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule. + ISBN:0198506732 + + + + + Reactome:R-HSA-6788855 + FN3KRP phosphorylates PsiAm, RibAm + + + + + Reactome:R-HSA-6788867 + FN3K phosphorylates ketosamines + @@ -2734,9 +2754,16 @@ For example, A and B may be gene products and binding of B by A positively regul - quality (PATO) + A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities + PATO:0000001 quality + + + + A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities + PATOC:GVG + @@ -2744,18 +2771,18 @@ For example, A and B may be gene products and binding of B by A positively regul - The nematode life-cycle stage that occurs entirely outside of a host organism. - jl16 - 2015-03-19T10:42:18Z - worm_development - WBls:0000001 - free-living nematode stage + The nematode life-cycle stage that occurs entirely outside of a host organism. + jl16 + 2015-03-19T10:42:18Z + worm_development + WBls:0000001 + free-living nematode stage - The nematode life-cycle stage that occurs entirely outside of a host organism. - WB:jl + The nematode life-cycle stage that occurs entirely outside of a host organism. + WB:jl @@ -2764,17 +2791,17 @@ For example, A and B may be gene products and binding of B by A positively regul - All C. elegans development stages, including embryo, larva and adult stage. - all stages - worm_development - WBls:0000002 - all stages Ce + All C. elegans development stages, including embryo, larva and adult stage. + all stages + worm_development + WBls:0000002 + all stages Ce - All C. elegans development stages, including embryo, larva and adult stage. - WB:wjc + All C. elegans development stages, including embryo, larva and adult stage. + WB:wjc @@ -2784,18 +2811,18 @@ For example, A and B may be gene products and binding of B by A positively regul - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - embryo - worm_development - WBls:0000003 - embryo Ce + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + embryo + worm_development + WBls:0000003 + embryo Ce - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:wjc + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:wjc @@ -2810,18 +2837,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - proliferating embryo - early embryo - worm_development - WBls:0000004 - proliferating embryo Ce + 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. + proliferating embryo + early embryo + worm_development + WBls:0000004 + proliferating embryo Ce - 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 + 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 @@ -2836,17 +2863,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - blastula embryo - worm_development - WBls:0000005 - blastula embryo Ce + 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. + blastula embryo + worm_development + WBls:0000005 + blastula embryo Ce - 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 + 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 @@ -2869,24 +2896,24 @@ For example, A and B may be gene products and binding of B by A positively regul - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - 1-cell embryo - fertilized egg - worm_development - WBls:0000006 - 1-cell embryo Ce + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + 1-cell embryo + fertilized egg + worm_development + WBls:0000006 + 1-cell embryo Ce - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - WB:wjc + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + WB:wjc - fertilized egg - WB:dr + fertilized egg + WB:dr @@ -2909,17 +2936,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - 2-cell embryo - worm_development - WBls:0000007 - 2-cell embryo Ce + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + 2-cell embryo + worm_development + WBls:0000007 + 2-cell embryo Ce - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - WB:wjc + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + WB:wjc @@ -2942,17 +2969,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - 4-cell embryo - worm_development - WBls:0000008 - 4-cell embryo Ce + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + 4-cell embryo + worm_development + WBls:0000008 + 4-cell embryo Ce - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - WB:wjc + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + WB:wjc @@ -2969,17 +2996,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - 28-cell embryo - worm_development - WBls:0000009 - 28-cell embryo Ce + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + 28-cell embryo + worm_development + WBls:0000009 + 28-cell embryo Ce - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - WB:wjc + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + WB:wjc @@ -3001,17 +3028,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - gastrulating embryo - worm_development - WBls:0000010 - gastrulating embryo Ce + 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. + gastrulating embryo + worm_development + WBls:0000010 + gastrulating embryo Ce - 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 + 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 @@ -3034,17 +3061,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - 51-cell embryo - worm_development - WBls:0000011 - 51-cell embryo Ce + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + 51-cell embryo + worm_development + WBls:0000011 + 51-cell embryo Ce - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - WB:wjc + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + WB:wjc @@ -3067,17 +3094,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - 88-cell embryo - worm_development - WBls:0000012 - 88-cell embryo Ce + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + 88-cell embryo + worm_development + WBls:0000012 + 88-cell embryo Ce - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - WB:wjc + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + WB:wjc @@ -3105,17 +3132,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - enclosing embryo - worm_development - WBls:0000013 - enclosing embryo Ce + 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. + enclosing embryo + worm_development + WBls:0000013 + enclosing embryo Ce - 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 + 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 @@ -3137,17 +3164,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - late cleavage stage embryo - worm_development - WBls:0000014 - late cleavage stage embryo Ce + 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. + late cleavage stage embryo + worm_development + WBls:0000014 + late cleavage stage embryo Ce - 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 + 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 @@ -3175,18 +3202,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - elongating embryo - mid embryo - worm_development - WBls:0000015 - elongating embryo Ce + 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. + elongating embryo + mid embryo + worm_development + WBls:0000015 + elongating embryo Ce - 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 + 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 @@ -3214,17 +3241,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - bean embryo - worm_development - WBls:0000016 - bean embryo Ce + 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. + bean embryo + worm_development + WBls:0000016 + bean embryo Ce - 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 + 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 @@ -3246,17 +3273,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - comma embryo - worm_development - WBls:0000017 - comma embryo Ce + 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. + comma embryo + worm_development + WBls:0000017 + comma embryo Ce - 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 + 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 @@ -3278,17 +3305,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - 1.5-fold embryo - worm_development - WBls:0000018 - 1.5-fold embryo Ce + 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. + 1.5-fold embryo + worm_development + WBls:0000018 + 1.5-fold embryo Ce - 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 + 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 @@ -3310,17 +3337,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - 2-fold embryo - worm_development - WBls:0000019 - 2-fold embryo Ce + 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. + 2-fold embryo + worm_development + WBls:0000019 + 2-fold embryo Ce - 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 + 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 @@ -3342,17 +3369,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - 3-fold embryo - worm_development - WBls:0000020 - 3-fold embryo Ce + 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. + 3-fold embryo + worm_development + WBls:0000020 + 3-fold embryo Ce - 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 + 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 @@ -3380,20 +3407,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fully-elongated embryo - late embryo - morphogenetic stage - pre-hatched embryo - worm_development - WBls:0000021 - fully-elongated embryo Ce + 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. + fully-elongated embryo + late embryo + morphogenetic stage + pre-hatched embryo + worm_development + WBls:0000021 + fully-elongated embryo Ce - 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. - WB:wjc + 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. + WB:wjc @@ -3409,18 +3436,18 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - postembryonic - worm_development - WBls:0000022 - postembryonic Ce + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + postembryonic + worm_development + WBls:0000022 + postembryonic Ce - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - WB:WBPerson2987 - WB:wjc + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + WB:WBPerson2987 + WB:wjc @@ -3443,18 +3470,18 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - larva - worm_development - WBls:0000023 - larva Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + larva + worm_development + WBls:0000023 + larva Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:wjc + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:wjc @@ -3477,17 +3504,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - L1 larva - worm_development - WBls:0000024 - L1 larva Ce + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + L1 larva + worm_development + WBls:0000024 + L1 larva Ce - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - WB:wjc + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + WB:wjc @@ -3503,17 +3530,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2 lethargus - worm_development - WBls:0000025 - L1-L2 lethargus Ce + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2 lethargus + worm_development + WBls:0000025 + L1-L2 lethargus Ce - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3535,17 +3562,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L1-L2 molt - worm_development - WBls:0000026 - L1-L2 molt Ce + 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. + L1-L2 molt + worm_development + WBls:0000026 + L1-L2 molt Ce - 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 + 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 @@ -3573,17 +3600,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. - L2 larva - worm_development - WBls:0000027 - L2 larva Ce + The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. + L2 larva + worm_development + WBls:0000027 + L2 larva Ce - 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 + 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 @@ -3599,17 +3626,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2-L3 lethargus - worm_development - WBls:0000028 - L2-L3 lethargus Ce + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2-L3 lethargus + worm_development + WBls:0000028 + L2-L3 lethargus Ce - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3631,17 +3658,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2-L3 molt - worm_development - WBls:0000029 - L2-L3 molt Ce + 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. + L2-L3 molt + worm_development + WBls:0000029 + L2-L3 molt Ce - 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 + 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 @@ -3657,17 +3684,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-dauer lethargus - worm_development - WBls:0000030 - L2d-dauer lethargus Ce + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-dauer lethargus + worm_development + WBls:0000030 + L2d-dauer lethargus Ce - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3683,17 +3710,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2d-dauer molt - worm_development - WBls:0000031 - L2d-dauer molt Ce + 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. + L2d-dauer molt + worm_development + WBls:0000031 + L2d-dauer molt Ce - 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 + 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 @@ -3715,17 +3742,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A third stage larva specialized for dispersal and long term survival. - dauer larva - worm_development - WBls:0000032 - dauer larva Ce + A third stage larva specialized for dispersal and long term survival. + dauer larva + worm_development + WBls:0000032 + dauer larva Ce - A third stage larva specialized for dispersal and long term survival. - ISBN:0-87969-433-5 + A third stage larva specialized for dispersal and long term survival. + ISBN:0-87969-433-5 @@ -3741,17 +3768,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - postdauer-L4 lethargus - worm_development - WBls:0000033 - postdauer-L4 lethargus Ce + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + postdauer-L4 lethargus + worm_development + WBls:0000033 + postdauer-L4 lethargus Ce - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3767,17 +3794,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - postdauer-L4 molt - worm_development - WBls:0000034 - postdauer-L4 molt Ce + 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. + postdauer-L4 molt + worm_development + WBls:0000034 + postdauer-L4 molt Ce - 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 + 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 @@ -3805,17 +3832,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - L3 larva - worm_development - WBls:0000035 - L3 larva Ce + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + L3 larva + worm_development + WBls:0000035 + L3 larva Ce - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - WB:wjc + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + WB:wjc @@ -3831,17 +3858,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L3-L4 lethargus - worm_development - WBls:0000036 - L3-L4 lethargus Ce + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L3-L4 lethargus + worm_development + WBls:0000036 + L3-L4 lethargus Ce - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3863,17 +3890,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L3-L4 molt - worm_development - WBls:0000037 - L3-L4 molt Ce + 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. + L3-L4 molt + worm_development + WBls:0000037 + L3-L4 molt Ce - 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 + 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 @@ -3907,17 +3934,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva - worm_development - WBls:0000038 - L4 larva Ce + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva + worm_development + WBls:0000038 + L4 larva Ce - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -3933,17 +3960,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L4-adult lethargus - worm_development - WBls:0000039 - L4-adult lethargus Ce + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L4-adult lethargus + worm_development + WBls:0000039 + L4-adult lethargus Ce - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3959,17 +3986,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L4-adult molt - worm_development - WBls:0000040 - L4-adult molt Ce + 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. + L4-adult molt + worm_development + WBls:0000040 + L4-adult molt Ce - 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 + 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 @@ -4003,17 +4030,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - adult - worm_development - WBls:0000041 - adult Ce + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + adult + worm_development + WBls:0000041 + adult Ce - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - WB:wjc + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + WB:wjc @@ -4035,17 +4062,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2 ecdysis - worm_development - WBls:0000042 - L1-L2 ecdysis Ce + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2 ecdysis + worm_development + WBls:0000042 + L1-L2 ecdysis Ce - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4061,17 +4088,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L1-L2d molt - worm_development - WBls:0000043 - L1-L2d molt Ce + 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. + L1-L2d molt + worm_development + WBls:0000043 + L1-L2d molt Ce - 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 + 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 @@ -4087,17 +4114,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2d lethargus - worm_development - WBls:0000044 - L1-L2d lethargus Ce + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2d lethargus + worm_development + WBls:0000044 + L1-L2d lethargus Ce - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -4113,17 +4140,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2d ecdysis - worm_development - WBls:0000045 - L1-L2d ecdysis Ce + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2d ecdysis + worm_development + WBls:0000045 + L1-L2d ecdysis Ce - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4139,17 +4166,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2d larva - worm_development - WBls:0000046 - L2d larva Ce + 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. + L2d larva + worm_development + WBls:0000046 + L2d larva Ce - 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 + 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 @@ -4171,17 +4198,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2-L3 ecdysis - worm_development - WBls:0000047 - L2-L3 ecdysis Ce + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2-L3 ecdysis + worm_development + WBls:0000047 + L2-L3 ecdysis Ce - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4197,17 +4224,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-dauer ecdysis - worm_development - WBls:0000048 - L2d-dauer ecdysis Ce + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-dauer ecdysis + worm_development + WBls:0000048 + L2d-dauer ecdysis Ce - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4229,17 +4256,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L3-L4 ecdysis - worm_development - WBls:0000049 - L3-L4 ecdysis Ce + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L3-L4 ecdysis + worm_development + WBls:0000049 + L3-L4 ecdysis Ce - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4261,16 +4288,16 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - worm_development - WBls:0000050 - L4-adult ecdysis Ce + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + worm_development + WBls:0000050 + L4-adult ecdysis Ce - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - WB:wjc + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + WB:wjc @@ -4286,17 +4313,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - postdauer-L4 ecdysis - worm_development - WBls:0000051 - postdauer-L4 ecdysis Ce + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + postdauer-L4 ecdysis + worm_development + WBls:0000051 + postdauer-L4 ecdysis Ce - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4312,26 +4339,26 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PDL3 - dauer exit - worm_development - WBls:0000052 - "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)." - post dauer L3 stage Ce + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PDL3 + dauer exit + worm_development + WBls:0000052 + "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)." + post dauer L3 stage Ce - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PMID:27417559 - WB:wjc + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PMID:27417559 + WB:wjc - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -4347,17 +4374,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2d-L3 molt - worm_development - WBls:0000053 - L2d-L3 molt Ce + 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. + L2d-L3 molt + worm_development + WBls:0000053 + L2d-L3 molt Ce - 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 + 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 @@ -4373,17 +4400,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-L3 lethargus - worm_development - WBls:0000054 - L2d-L3 lethargus Ce + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-L3 lethargus + worm_development + WBls:0000054 + L2d-L3 lethargus Ce - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -4399,17 +4426,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-L3 ecdysis - worm_development - WBls:0000055 - L2d-L3 ecdysis Ce + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-L3 ecdysis + worm_development + WBls:0000055 + L2d-L3 ecdysis Ce - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4418,17 +4445,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage after an male animal is fully-developed and reaches maturity. - adult male - worm_development - WBls:0000056 - adult male Ce + The stage after an male animal is fully-developed and reaches maturity. + adult male + worm_development + WBls:0000056 + adult male Ce - The stage after an male animal is fully-developed and reaches maturity. - WB:wjc + The stage after an male animal is fully-developed and reaches maturity. + WB:wjc @@ -4437,17 +4464,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - adult hermaphrodite - worm_development - WBls:0000057 - adult hermaphrodite Ce + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + adult hermaphrodite + worm_development + WBls:0000057 + adult hermaphrodite Ce - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - WB:wjc + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + WB:wjc @@ -4463,17 +4490,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - pre-reproductive stage adult hermaphrodite - worm_development - WBls:0000058 - pre-reproductive stage adult hermaphrodite Ce + 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. + pre-reproductive stage adult hermaphrodite + worm_development + WBls:0000058 + pre-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -4482,18 +4509,18 @@ For example, A and B may be gene products and binding of B by A positively regul - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - jl16 - 2015-03-19T10:44:40Z - worm_development - WBls:0000059 - parasitic nematode stage + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + jl16 + 2015-03-19T10:44:40Z + worm_development + WBls:0000059 + parasitic nematode stage - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - WB:jl + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + WB:jl @@ -4509,17 +4536,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - reproductive stage adult hermaphrodite - worm_development - WBls:0000060 - reproductive stage adult hermaphrodite Ce + 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. + reproductive stage adult hermaphrodite + worm_development + WBls:0000060 + reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -4535,17 +4562,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - oocyte-laying stage adult hermaphrodite - worm_development - WBls:0000061 - oocyte-laying stage adult hermaphrodite Ce + 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. + oocyte-laying stage adult hermaphrodite + worm_development + WBls:0000061 + oocyte-laying stage adult hermaphrodite Ce - 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 + 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 @@ -4561,17 +4588,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - post-reproductive stage adult hermaphrodite - worm_development - WBls:0000062 - post-reproductive stage adult hermaphrodite Ce + 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. + post-reproductive stage adult hermaphrodite + worm_development + WBls:0000062 + post-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -4587,17 +4614,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 0-24 hours after L4-adult molt. - newly molted young adult hermaphrodite - worm_development - WBls:0000063 - newly molted young adult hermaphrodite Ce + At 20 Centigrade: 0-24 hours after L4-adult molt. + newly molted young adult hermaphrodite + worm_development + WBls:0000063 + newly molted young adult hermaphrodite Ce - At 20 Centigrade: 0-24 hours after L4-adult molt. - WB:wjc + At 20 Centigrade: 0-24 hours after L4-adult molt. + WB:wjc @@ -4613,17 +4640,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - 1-day post-L4 adult hermaphrodite - worm_development - WBls:0000064 - 1-day post-L4 adult hermaphrodite Ce + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + 1-day post-L4 adult hermaphrodite + worm_development + WBls:0000064 + 1-day post-L4 adult hermaphrodite Ce - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - WB:wjc + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + WB:wjc @@ -4645,17 +4672,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - 2-days post-L4 adult hermaphrodite - worm_development - WBls:0000065 - 2-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + 2-days post-L4 adult hermaphrodite + worm_development + WBls:0000065 + 2-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - WB:wjc + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + WB:wjc @@ -4677,17 +4704,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - 3-days post-L4 adult hermaphrodite - worm_development - WBls:0000066 - 3-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + 3-days post-L4 adult hermaphrodite + worm_development + WBls:0000066 + 3-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - WB:wjc + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + WB:wjc @@ -4709,17 +4736,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - 4-days post-L4 adult hermaphrodite - worm_development - WBls:0000067 - 4-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + 4-days post-L4 adult hermaphrodite + worm_development + WBls:0000067 + 4-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - WB:wjc + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + WB:wjc @@ -4741,17 +4768,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - 5-days post-L4 adult hermaphrodite - worm_development - WBls:0000068 - 5-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + 5-days post-L4 adult hermaphrodite + worm_development + WBls:0000068 + 5-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - WB:wjc + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + WB:wjc @@ -4773,17 +4800,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - 4-7 days post-L4 adult hermaphrodite - worm_development - WBls:0000069 - 4-7 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + 4-7 days post-L4 adult hermaphrodite + worm_development + WBls:0000069 + 4-7 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - WB:wjc + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + WB:wjc @@ -4805,17 +4832,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - 7-10 days post-L4 adult hermaphrodite - worm_development - WBls:0000070 - 7-10 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + 7-10 days post-L4 adult hermaphrodite + worm_development + WBls:0000070 + 7-10 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - WB:wjc + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + WB:wjc @@ -4838,17 +4865,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - 8-cell embryo - worm_development - WBls:0000071 - 8-cell embryo Ce + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + 8-cell embryo + worm_development + WBls:0000071 + 8-cell embryo Ce - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - WB:wjc + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + WB:wjc @@ -4871,17 +4898,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - 12-cell embryo - worm_development - WBls:0000072 - 12-cell embryo Ce + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + 12-cell embryo + worm_development + WBls:0000072 + 12-cell embryo Ce - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - WB:wjc + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + WB:wjc @@ -4890,17 +4917,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva male - worm_development - WBls:0000073 - L4 larva male Ce + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva male + worm_development + WBls:0000073 + L4 larva male Ce - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -4928,18 +4955,18 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - danielaraciti - 2012-05-22T14:35:04Z - worm_development - WBls:0000074 - 11-15 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + danielaraciti + 2012-05-22T14:35:04Z + worm_development + WBls:0000074 + 11-15 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - WB:dr + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + WB:dr @@ -4947,17 +4974,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage of a worm - danielaraciti - worm_development - WBls:0000075 - worm life stage + A developemental life stage of a worm + danielaraciti + worm_development + WBls:0000075 + worm life stage - A developemental life stage of a worm - WB:WBPerson2987 + A developemental life stage of a worm + WB:WBPerson2987 @@ -4966,19 +4993,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Any Strongyloides developmental stage, including free-living and parasitic stages. - jl16 - 2015-03-19T10:49:23Z - all stages Strongyloides - worm_development - WBls:0000076 - Strongyloides life stage + Any Strongyloides developmental stage, including free-living and parasitic stages. + jl16 + 2015-03-19T10:49:23Z + all stages Strongyloides + worm_development + WBls:0000076 + Strongyloides life stage - Any Strongyloides developmental stage, including free-living and parasitic stages. - WB:jl + Any Strongyloides developmental stage, including free-living and parasitic stages. + WB:jl @@ -4988,25 +5015,25 @@ For example, A and B may be gene products and binding of B by A positively regul - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2012-05-30T09:23:44Z - WBls:0000662 - sheathed microfilaria - Brugia immature microfilaria - sheathed microfilaria Bma - worm_development - immature microfilaria Bma - WBls:0000077 - Brugia sheathed microfilaria + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2012-05-30T09:23:44Z + WBls:0000662 + sheathed microfilaria + Brugia immature microfilaria + sheathed microfilaria Bma + worm_development + immature microfilaria Bma + WBls:0000077 + Brugia sheathed microfilaria - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr - WB:mb + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr + WB:mb @@ -5038,21 +5065,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The first stage larva. - danielaraciti - 2012-05-30T09:29:36Z - L1 - L1 larva Bma - worm_development - WBls:0000079 - Brugia L1 + The first stage larva. + danielaraciti + 2012-05-30T09:29:36Z + L1 + L1 larva Bma + worm_development + WBls:0000079 + Brugia L1 - The first stage larva. - WB:dr - WB:mb + The first stage larva. + WB:dr + WB:mb @@ -5073,21 +5100,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2012-05-30T09:30:40Z - L2 - L2 larva Bma - worm_development - WBls:0000080 - Brugia L2 + 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. + danielaraciti + 2012-05-30T09:30:40Z + L2 + L2 larva Bma + worm_development + WBls:0000080 + Brugia L2 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5108,21 +5135,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The third stage larva. - danielaraciti - 2012-05-30T09:31:06Z - L3 - L3 larva Bma - worm_development - WBls:0000081 - Brugia L3 + The third stage larva. + danielaraciti + 2012-05-30T09:31:06Z + L3 + L3 larva Bma + worm_development + WBls:0000081 + Brugia L3 - The third stage larva. - WB:dr - WB:mb + The third stage larva. + WB:dr + WB:mb @@ -5143,21 +5170,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2012-05-30T09:31:38Z - L4 - L4 larva Bma - worm_development - WBls:0000082 - Brugia L4 + 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. + danielaraciti + 2012-05-30T09:31:38Z + L4 + L4 larva Bma + worm_development + WBls:0000082 + Brugia L4 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5178,21 +5205,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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). - danielaraciti - 2012-05-30T09:32:18Z - adult - adult Bma - worm_development - WBls:0000083 - Brugia adult + 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). + danielaraciti + 2012-05-30T09:32:18Z + adult + adult Bma + worm_development + WBls:0000083 + Brugia adult - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -5215,21 +5242,21 @@ For example, A and B may be gene products and binding of B by A positively regul - E-cell has divided into Ea and Ep. Contains 14 cells. - danielaraciti - 2012-10-02T17:15:41Z - 14-cell embryo - worm_development - WBls:0000084 - 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. - 14-cell embryo Ce + E-cell has divided into Ea and Ep. Contains 14 cells. + danielaraciti + 2012-10-02T17:15:41Z + 14-cell embryo + worm_development + WBls:0000084 + 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. + 14-cell embryo Ce - E-cell has divided into Ea and Ep. Contains 14 cells. - WB:WBPaper00046121 - WB:dr + E-cell has divided into Ea and Ep. Contains 14 cells. + WB:WBPaper00046121 + WB:dr @@ -5252,21 +5279,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Fourth cleavage of the AB lineage. Contains 24 cells. - danielaraciti - 2012-10-02T17:23:32Z - 24-cell embryo - worm_development - WBls:0000085 - 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. - 24-cell embryo Ce + Fourth cleavage of the AB lineage. Contains 24 cells. + danielaraciti + 2012-10-02T17:23:32Z + 24-cell embryo + worm_development + WBls:0000085 + 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. + 24-cell embryo Ce - Fourth cleavage of the AB lineage. Contains 24 cells. - WB:WBPaper00046121 - WB:dr + Fourth cleavage of the AB lineage. Contains 24 cells. + WB:WBPaper00046121 + WB:dr @@ -5289,21 +5316,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Fifth cleavage of the AB lineage. Contains 44 cells. - danielaraciti - 2012-10-02T17:25:18Z - 44-cell embryo - worm_development - WBls:0000086 - 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. - 44-cell embryo Ce + Fifth cleavage of the AB lineage. Contains 44 cells. + danielaraciti + 2012-10-02T17:25:18Z + 44-cell embryo + worm_development + WBls:0000086 + 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. + 44-cell embryo Ce - Fifth cleavage of the AB lineage. Contains 44 cells. - WB:WBPaper00046121 - WB:dr + Fifth cleavage of the AB lineage. Contains 44 cells. + WB:WBPaper00046121 + WB:dr @@ -5326,21 +5353,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Sixth cleavage of the AB lineage. Contains 68 cells. - danielaraciti - 2012-10-02T17:26:52Z - 68-cell embryo - worm_development - WBls:0000087 - 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. - 68-cell embryo Ce + Sixth cleavage of the AB lineage. Contains 68 cells. + danielaraciti + 2012-10-02T17:26:52Z + 68-cell embryo + worm_development + WBls:0000087 + 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. + 68-cell embryo Ce - Sixth cleavage of the AB lineage. Contains 68 cells. - WB:WBPaper00046121 - WB:dr + Sixth cleavage of the AB lineage. Contains 68 cells. + WB:WBPaper00046121 + WB:dr @@ -5363,21 +5390,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Seventh cleavage of the AB lineage. Contains 86 cells. - danielaraciti - 2012-10-02T17:27:50Z - 86-cell embryo - worm_development - WBls:0000088 - 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. - 86-cell embryo Ce + Seventh cleavage of the AB lineage. Contains 86 cells. + danielaraciti + 2012-10-02T17:27:50Z + 86-cell embryo + worm_development + WBls:0000088 + 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. + 86-cell embryo Ce - Seventh cleavage of the AB lineage. Contains 86 cells. - WB:WBPaper00046121 - WB:dr + Seventh cleavage of the AB lineage. Contains 86 cells. + WB:WBPaper00046121 + WB:dr @@ -5400,19 +5427,19 @@ For example, A and B may be gene products and binding of B by A positively regul - P4 and M cells have finished migrating. Contains 190 cells. - danielaraciti - 2012-10-15T13:19:10Z - 190-cells embryo - worm_development - WBls:0000089 - 190-cells embryo Ce + P4 and M cells have finished migrating. Contains 190 cells. + danielaraciti + 2012-10-15T13:19:10Z + 190-cells embryo + worm_development + WBls:0000089 + 190-cells embryo Ce - P4 and M cells have finished migrating. Contains 190 cells. - WB:dr + P4 and M cells have finished migrating. Contains 190 cells. + WB:dr @@ -5435,19 +5462,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - danielaraciti - 2012-10-16T15:37:30Z - 96-cell embryo - worm_development - WBls:0000090 - 96-cell embryo Ce + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + danielaraciti + 2012-10-16T15:37:30Z + 96-cell embryo + worm_development + WBls:0000090 + 96-cell embryo Ce - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - WB:dr + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + WB:dr @@ -5456,21 +5483,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Any Brugia developmental stage, including embryo, larva and adult stage. - danielaraciti - 2013-11-12T03:18:57Z - all stages Bma - worm_development - WBls:0000091 - Brugia life stage + Any Brugia developmental stage, including embryo, larva and adult stage. + danielaraciti + 2013-11-12T03:18:57Z + all stages Bma + worm_development + WBls:0000091 + Brugia life stage - Any Brugia developmental stage, including embryo, larva and adult stage. - WB:dr - WB:jl - WB:mb + Any Brugia developmental stage, including embryo, larva and adult stage. + WB:dr + WB:jl + WB:mb @@ -5480,21 +5507,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - danielaraciti - 2013-11-12T04:48:28Z - embryo - embryo Bma - worm_development - WBls:0000092 - Brugia embryo + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + danielaraciti + 2013-11-12T04:48:28Z + embryo + embryo Bma + worm_development + WBls:0000092 + Brugia embryo - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -5510,21 +5537,21 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - danielaraciti - 2013-11-12T04:50:29Z - postembryonic stage - postembryonic Bma - worm_development - WBls:0000093 - Brugia postembryonic stage + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + danielaraciti + 2013-11-12T04:50:29Z + postembryonic stage + postembryonic Bma + worm_development + WBls:0000093 + Brugia postembryonic stage - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -5539,21 +5566,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2013-11-12T04:55:53Z - early embryo - early embryo Bma - worm_development - WBls:0000094 - Brugia early embryo + 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. + danielaraciti + 2013-11-12T04:55:53Z + early embryo + early embryo Bma + worm_development + WBls:0000094 + Brugia early embryo - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5575,21 +5602,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Proliferates from 100 cells to Lima bean stage. - danielaraciti - 2013-11-12T04:59:19Z - middle embryo - middle embryo Bma - worm_development - WBls:0000095 - Brugia middle embryo + Proliferates from 100 cells to Lima bean stage. + danielaraciti + 2013-11-12T04:59:19Z + middle embryo + middle embryo Bma + worm_development + WBls:0000095 + Brugia middle embryo - Proliferates from 100 cells to Lima bean stage. - WB:dr - WB:mb + Proliferates from 100 cells to Lima bean stage. + WB:dr + WB:mb @@ -5611,21 +5638,21 @@ For example, A and B may be gene products and binding of B by A positively regul - From Lima bean to hatching. - danielaraciti - 2013-11-12T05:00:28Z - late embryo - late embryo Bma - worm_development - WBls:0000096 - Brugia late embryo + From Lima bean to hatching. + danielaraciti + 2013-11-12T05:00:28Z + late embryo + late embryo Bma + worm_development + WBls:0000096 + Brugia late embryo - From Lima bean to hatching. - WB:dr - WB:mb + From Lima bean to hatching. + WB:dr + WB:mb @@ -5647,21 +5674,21 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - danielaraciti - 2013-11-12T05:12:19Z - larval stage - larva Bma - worm_development - WBls:0000097 - Brugia larval stage + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + danielaraciti + 2013-11-12T05:12:19Z + larval stage + larva Bma + worm_development + WBls:0000097 + Brugia larval stage - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:dr + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:dr @@ -5671,24 +5698,24 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2013-11-12T05:23:54Z - L3i - Brugia vector-derived L3 - vector-derived L3 Bma - worm_development - iL3 - infective L3 - WBls:0000098 - Brugia L3i + 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. + danielaraciti + 2013-11-12T05:23:54Z + L3i + Brugia vector-derived L3 + vector-derived L3 Bma + worm_development + iL3 + infective L3 + WBls:0000098 + Brugia L3i - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5704,22 +5731,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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). - danielaraciti - 2013-11-12T05:24:59Z - post-infection L3 - post-infection L3 Bma - worm_development - piL3 - WBls:0000099 - Brugia post-infection L3 + 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). + danielaraciti + 2013-11-12T05:24:59Z + post-infection L3 + post-infection L3 Bma + worm_development + piL3 + WBls:0000099 + Brugia post-infection L3 - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -5741,21 +5768,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2013-11-12T05:37:52Z - young adult - young adult Bma - worm_development - WBls:0000100 - Brugia young adult + 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. + danielaraciti + 2013-11-12T05:37:52Z + young adult + young adult Bma + worm_development + WBls:0000100 + Brugia young adult - 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 + 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 @@ -5764,21 +5791,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage in a nematode, including embryo, larva and adult stage. - danielaraciti - 2013-11-25T06:13:37Z - all stages nematode - nematode developmental stage - worm_development - WBls:0000101 - Nematode life stage + Any developmental stage in a nematode, including embryo, larva and adult stage. + danielaraciti + 2013-11-25T06:13:37Z + all stages nematode + nematode developmental stage + worm_development + WBls:0000101 + Nematode life stage - Any developmental stage in a nematode, including embryo, larva and adult stage. - WB:dr - WB:jl + Any developmental stage in a nematode, including embryo, larva and adult stage. + WB:dr + WB:jl @@ -5787,21 +5814,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - danielaraciti - 2013-11-25T06:14:14Z - embryo nematode - nematode egg stage - worm_development - WBls:0000102 - nematode embryo + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + danielaraciti + 2013-11-25T06:14:14Z + embryo nematode + nematode egg stage + worm_development + WBls:0000102 + nematode embryo - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -5817,19 +5844,19 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage in a nematode that occurs from egg hatching until death. - danielaraciti - 2013-11-25T06:14:39Z - worm_development - WBls:0000103 - postembryonic nematode + A developemental life stage in a nematode that occurs from egg hatching until death. + danielaraciti + 2013-11-25T06:14:39Z + worm_development + WBls:0000103 + postembryonic nematode - A developemental life stage in a nematode that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a nematode that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -5845,20 +5872,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - danielaraciti - 2013-11-25T06:18:53Z - L5 - adult nematode - worm_development - WBls:0000104 - nematode adult + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + danielaraciti + 2013-11-25T06:18:53Z + L5 + adult nematode + worm_development + WBls:0000104 + nematode adult - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - WB:dr + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + WB:dr @@ -5867,21 +5894,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage that begins after hatching and ends when the nematode becomes adult. - danielaraciti - 2013-11-25T06:19:27Z - larval stage - larva nematode - nematode larva - worm_development - WBls:0000105 - nematode larval stage + The stage that begins after hatching and ends when the nematode becomes adult. + danielaraciti + 2013-11-25T06:19:27Z + larval stage + larva nematode + nematode larva + worm_development + WBls:0000105 + nematode larval stage - The stage that begins after hatching and ends when the nematode becomes adult. - WB:dr + The stage that begins after hatching and ends when the nematode becomes adult. + WB:dr @@ -5890,19 +5917,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The first stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:28Z - L1 larva nematode - worm_development - WBls:0000106 - L1 larval stage + The first stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:28Z + L1 larva nematode + worm_development + WBls:0000106 + L1 larval stage - The first stage larva of nematodes. - WB:dr + The first stage larva of nematodes. + WB:dr @@ -5918,19 +5945,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The second stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:54Z - L2 larva nematode - worm_development - WBls:0000107 - L2 larval stage + The second stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:54Z + L2 larva nematode + worm_development + WBls:0000107 + L2 larval stage - The second stage larva of nematodes. - WB:dr + The second stage larva of nematodes. + WB:dr @@ -5946,19 +5973,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The third stage larva of nematodes. - danielaraciti - 2013-11-25T06:21:33Z - L3 larva nematode - worm_development - WBls:0000108 - L3 larval stage + The third stage larva of nematodes. + danielaraciti + 2013-11-25T06:21:33Z + L3 larva nematode + worm_development + WBls:0000108 + L3 larval stage - The third stage larva of nematodes. - WB:dr + The third stage larva of nematodes. + WB:dr @@ -5974,19 +6001,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The fourth stage larva of nematodes. - danielaraciti - 2013-11-25T06:22:48Z - L4 larva nematode - worm_development - WBls:0000109 - L4 larval stage + The fourth stage larva of nematodes. + danielaraciti + 2013-11-25T06:22:48Z + L4 larva nematode + worm_development + WBls:0000109 + L4 larval stage - The fourth stage larva of nematodes. - WB:dr + The fourth stage larva of nematodes. + WB:dr @@ -5995,21 +6022,21 @@ For example, A and B may be gene products and binding of B by A positively regul - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2013-11-25T06:23:23Z - sheathed microfilaria nematode - sheathed microfilariae - worm_development - WBls:0000110 - sheathed microfilaria + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2013-11-25T06:23:23Z + sheathed microfilaria nematode + sheathed microfilariae + worm_development + WBls:0000110 + sheathed microfilaria - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr @@ -6037,18 +6064,18 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - danielaraciti - 16-18 days post-L4 adult hermaphrodite - worm_development - WBls:0000111 - 16-18 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + danielaraciti + 16-18 days post-L4 adult hermaphrodite + worm_development + WBls:0000111 + 16-18 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - WB:dr + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + WB:dr @@ -6064,20 +6091,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 1 min post first-cleavage - worm_development - WBls:0000112 - 1 min post first-cleavage Ce + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 1 min post first-cleavage + worm_development + WBls:0000112 + 1 min post first-cleavage Ce - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6100,20 +6127,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 2 min post first-cleavage - worm_development - WBls:0000113 - 2 min post first-cleavage Ce + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 2 min post first-cleavage + worm_development + WBls:0000113 + 2 min post first-cleavage Ce - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6136,20 +6163,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 3 min post first-cleavage - worm_development - WBls:0000114 - 3 min post first-cleavage Ce + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 3 min post first-cleavage + worm_development + WBls:0000114 + 3 min post first-cleavage Ce - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6172,20 +6199,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 4 min post first-cleavage - worm_development - WBls:0000115 - 4 min post first-cleavage Ce + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 4 min post first-cleavage + worm_development + WBls:0000115 + 4 min post first-cleavage Ce - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6208,20 +6235,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 5 min post first-cleavage - worm_development - WBls:0000116 - 5 min post first-cleavage Ce + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 5 min post first-cleavage + worm_development + WBls:0000116 + 5 min post first-cleavage Ce - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6244,20 +6271,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 6 min post first-cleavage - worm_development - WBls:0000117 - 6 min post first-cleavage Ce + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 6 min post first-cleavage + worm_development + WBls:0000117 + 6 min post first-cleavage Ce - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6280,20 +6307,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 7 min post first-cleavage - worm_development - WBls:0000118 - 7 min post first-cleavage Ce + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 7 min post first-cleavage + worm_development + WBls:0000118 + 7 min post first-cleavage Ce - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6316,20 +6343,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 8 min post first-cleavage - worm_development - WBls:0000119 - 8 min post first-cleavage Ce + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 8 min post first-cleavage + worm_development + WBls:0000119 + 8 min post first-cleavage Ce - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6352,20 +6379,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 9 min post first-cleavage - worm_development - WBls:0000120 - 9 min post first-cleavage Ce + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 9 min post first-cleavage + worm_development + WBls:0000120 + 9 min post first-cleavage Ce - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6388,20 +6415,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 10 min post first-cleavage - worm_development - WBls:0000121 - 10 min post first-cleavage Ce + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 10 min post first-cleavage + worm_development + WBls:0000121 + 10 min post first-cleavage Ce - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6424,20 +6451,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 11 min post first-cleavage - worm_development - WBls:0000122 - 11 min post first-cleavage Ce + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 11 min post first-cleavage + worm_development + WBls:0000122 + 11 min post first-cleavage Ce - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6460,20 +6487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 12 min post first-cleavage - worm_development - WBls:0000123 - 12 min post first-cleavage Ce + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 12 min post first-cleavage + worm_development + WBls:0000123 + 12 min post first-cleavage Ce - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6496,20 +6523,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 13 min post first-cleavage - worm_development - WBls:0000124 - 13 min post first-cleavage Ce + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 13 min post first-cleavage + worm_development + WBls:0000124 + 13 min post first-cleavage Ce - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6532,20 +6559,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 14 min post first-cleavage - worm_development - WBls:0000125 - 14 min post first-cleavage Ce + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 14 min post first-cleavage + worm_development + WBls:0000125 + 14 min post first-cleavage Ce - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6568,20 +6595,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 15 min post first-cleavage - worm_development - WBls:0000126 - 15 min post first-cleavage Ce + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 15 min post first-cleavage + worm_development + WBls:0000126 + 15 min post first-cleavage Ce - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6604,20 +6631,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 16 min post first-cleavage - worm_development - WBls:0000127 - 16 min post first-cleavage Ce + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 16 min post first-cleavage + worm_development + WBls:0000127 + 16 min post first-cleavage Ce - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6640,20 +6667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 17 min post first-cleavage - worm_development - WBls:0000128 - 17 min post first-cleavage Ce + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 17 min post first-cleavage + worm_development + WBls:0000128 + 17 min post first-cleavage Ce - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6676,20 +6703,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 18 min post first-cleavage - worm_development - WBls:0000129 - 18 min post first-cleavage Ce + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 18 min post first-cleavage + worm_development + WBls:0000129 + 18 min post first-cleavage Ce - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6712,20 +6739,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 19 min post first-cleavage - worm_development - WBls:0000130 - 19 min post first-cleavage Ce + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 19 min post first-cleavage + worm_development + WBls:0000130 + 19 min post first-cleavage Ce - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6748,20 +6775,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 20 min post first-cleavage - worm_development - WBls:0000131 - 20 min post first-cleavage Ce + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 20 min post first-cleavage + worm_development + WBls:0000131 + 20 min post first-cleavage Ce - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6784,20 +6811,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 21 min post first-cleavage - worm_development - WBls:0000132 - 21 min post first-cleavage Ce + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 21 min post first-cleavage + worm_development + WBls:0000132 + 21 min post first-cleavage Ce - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6820,20 +6847,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 22 min post first-cleavage - worm_development - WBls:0000133 - 22 min post first-cleavage Ce + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 22 min post first-cleavage + worm_development + WBls:0000133 + 22 min post first-cleavage Ce - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6856,20 +6883,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 23 min post first-cleavage - worm_development - WBls:0000134 - 23 min post first-cleavage Ce + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 23 min post first-cleavage + worm_development + WBls:0000134 + 23 min post first-cleavage Ce - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6892,20 +6919,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 24 min post first-cleavage - worm_development - WBls:0000135 - 24 min post first-cleavage Ce + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 24 min post first-cleavage + worm_development + WBls:0000135 + 24 min post first-cleavage Ce - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6928,20 +6955,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 25 min post first-cleavage - worm_development - WBls:0000136 - 25 min post first-cleavage Ce + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 25 min post first-cleavage + worm_development + WBls:0000136 + 25 min post first-cleavage Ce - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6964,20 +6991,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 26 min post first-cleavage - worm_development - WBls:0000137 - 26 min post first-cleavage Ce + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 26 min post first-cleavage + worm_development + WBls:0000137 + 26 min post first-cleavage Ce - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7000,20 +7027,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 27 min post first-cleavage - worm_development - WBls:0000138 - 27 min post first-cleavage Ce + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 27 min post first-cleavage + worm_development + WBls:0000138 + 27 min post first-cleavage Ce - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7036,20 +7063,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 28 min post first-cleavage - worm_development - WBls:0000139 - 28 min post first-cleavage Ce + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 28 min post first-cleavage + worm_development + WBls:0000139 + 28 min post first-cleavage Ce - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7072,20 +7099,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 29 min post first-cleavage - worm_development - WBls:0000140 - 29 min post first-cleavage Ce + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 29 min post first-cleavage + worm_development + WBls:0000140 + 29 min post first-cleavage Ce - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7108,20 +7135,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 30 min post first-cleavage - worm_development - WBls:0000141 - 30 min post first-cleavage Ce + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 30 min post first-cleavage + worm_development + WBls:0000141 + 30 min post first-cleavage Ce - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7144,20 +7171,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 31 min post first-cleavage - worm_development - WBls:0000142 - 31 min post first-cleavage Ce + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 31 min post first-cleavage + worm_development + WBls:0000142 + 31 min post first-cleavage Ce - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7180,20 +7207,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 32 min post first-cleavage - worm_development - WBls:0000143 - 32 min post first-cleavage Ce + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 32 min post first-cleavage + worm_development + WBls:0000143 + 32 min post first-cleavage Ce - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7216,20 +7243,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 33 min post first-cleavage - worm_development - WBls:0000144 - 33 min post first-cleavage Ce + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 33 min post first-cleavage + worm_development + WBls:0000144 + 33 min post first-cleavage Ce - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7252,20 +7279,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 34 min post first-cleavage - worm_development - WBls:0000145 - 34 min post first-cleavage Ce + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 34 min post first-cleavage + worm_development + WBls:0000145 + 34 min post first-cleavage Ce - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7288,20 +7315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 35 min post first-cleavage - worm_development - WBls:0000146 - 35 min post first-cleavage Ce + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 35 min post first-cleavage + worm_development + WBls:0000146 + 35 min post first-cleavage Ce - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7324,20 +7351,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 36 min post first-cleavage - worm_development - WBls:0000147 - 36 min post first-cleavage Ce + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 36 min post first-cleavage + worm_development + WBls:0000147 + 36 min post first-cleavage Ce - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7360,20 +7387,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 37 min post first-cleavage - worm_development - WBls:0000148 - 37 min post first-cleavage Ce + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 37 min post first-cleavage + worm_development + WBls:0000148 + 37 min post first-cleavage Ce - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7396,20 +7423,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 38 min post first-cleavage - worm_development - WBls:0000149 - 38 min post first-cleavage Ce + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 38 min post first-cleavage + worm_development + WBls:0000149 + 38 min post first-cleavage Ce - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7432,20 +7459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 39 min post first-cleavage - worm_development - WBls:0000150 - 39 min post first-cleavage Ce + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 39 min post first-cleavage + worm_development + WBls:0000150 + 39 min post first-cleavage Ce - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7468,20 +7495,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 40 min post first-cleavage - worm_development - WBls:0000151 - 40 min post first-cleavage Ce + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 40 min post first-cleavage + worm_development + WBls:0000151 + 40 min post first-cleavage Ce - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7504,20 +7531,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 41 min post first-cleavage - worm_development - WBls:0000152 - 41 min post first-cleavage Ce + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 41 min post first-cleavage + worm_development + WBls:0000152 + 41 min post first-cleavage Ce - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7540,20 +7567,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 42 min post first-cleavage - worm_development - WBls:0000153 - 42 min post first-cleavage Ce + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 42 min post first-cleavage + worm_development + WBls:0000153 + 42 min post first-cleavage Ce - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7576,20 +7603,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 43 min post first-cleavage - worm_development - WBls:0000154 - 43 min post first-cleavage Ce + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 43 min post first-cleavage + worm_development + WBls:0000154 + 43 min post first-cleavage Ce - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7612,20 +7639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 44 min post first-cleavage - worm_development - WBls:0000155 - 44 min post first-cleavage Ce + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 44 min post first-cleavage + worm_development + WBls:0000155 + 44 min post first-cleavage Ce - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7648,20 +7675,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 45 min post first-cleavage - worm_development - WBls:0000156 - 45 min post first-cleavage Ce + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 45 min post first-cleavage + worm_development + WBls:0000156 + 45 min post first-cleavage Ce - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7684,20 +7711,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 46 min post first-cleavage - worm_development - WBls:0000157 - 46 min post first-cleavage Ce + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 46 min post first-cleavage + worm_development + WBls:0000157 + 46 min post first-cleavage Ce - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7720,20 +7747,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 47 min post first-cleavage - worm_development - WBls:0000158 - 47 min post first-cleavage Ce + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 47 min post first-cleavage + worm_development + WBls:0000158 + 47 min post first-cleavage Ce - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7756,20 +7783,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 48 min post first-cleavage - worm_development - WBls:0000159 - 48 min post first-cleavage Ce + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 48 min post first-cleavage + worm_development + WBls:0000159 + 48 min post first-cleavage Ce - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7792,20 +7819,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 49 min post first-cleavage - worm_development - WBls:0000160 - 49 min post first-cleavage Ce + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 49 min post first-cleavage + worm_development + WBls:0000160 + 49 min post first-cleavage Ce - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7828,20 +7855,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 50 min post first-cleavage - worm_development - WBls:0000161 - 50 min post first-cleavage Ce + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 50 min post first-cleavage + worm_development + WBls:0000161 + 50 min post first-cleavage Ce - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7864,20 +7891,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 51 min post first-cleavage - worm_development - WBls:0000162 - 51 min post first-cleavage Ce + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 51 min post first-cleavage + worm_development + WBls:0000162 + 51 min post first-cleavage Ce - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7900,20 +7927,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 52 min post first-cleavage - worm_development - WBls:0000163 - 52 min post first-cleavage Ce + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 52 min post first-cleavage + worm_development + WBls:0000163 + 52 min post first-cleavage Ce - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7936,20 +7963,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 53 min post first-cleavage - worm_development - WBls:0000164 - 53 min post first-cleavage Ce + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 53 min post first-cleavage + worm_development + WBls:0000164 + 53 min post first-cleavage Ce - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7972,20 +7999,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 54 min post first-cleavage - worm_development - WBls:0000165 - 54 min post first-cleavage Ce + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 54 min post first-cleavage + worm_development + WBls:0000165 + 54 min post first-cleavage Ce - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8008,20 +8035,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 55 min post first-cleavage - worm_development - WBls:0000166 - 55 min post first-cleavage Ce + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 55 min post first-cleavage + worm_development + WBls:0000166 + 55 min post first-cleavage Ce - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8044,20 +8071,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 56 min post first-cleavage - worm_development - WBls:0000167 - 56 min post first-cleavage Ce + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 56 min post first-cleavage + worm_development + WBls:0000167 + 56 min post first-cleavage Ce - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8080,20 +8107,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 57 min post first-cleavage - worm_development - WBls:0000168 - 57 min post first-cleavage Ce + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 57 min post first-cleavage + worm_development + WBls:0000168 + 57 min post first-cleavage Ce - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8116,20 +8143,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 58 min post first-cleavage - worm_development - WBls:0000169 - 58 min post first-cleavage Ce + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 58 min post first-cleavage + worm_development + WBls:0000169 + 58 min post first-cleavage Ce - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8152,20 +8179,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 59 min post first-cleavage - worm_development - WBls:0000170 - 59 min post first-cleavage Ce + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 59 min post first-cleavage + worm_development + WBls:0000170 + 59 min post first-cleavage Ce - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8188,20 +8215,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 60 min post first-cleavage - worm_development - WBls:0000171 - 60 min post first-cleavage Ce + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 60 min post first-cleavage + worm_development + WBls:0000171 + 60 min post first-cleavage Ce - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8224,20 +8251,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 61 min post first-cleavage - worm_development - WBls:0000172 - 61 min post first-cleavage Ce + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 61 min post first-cleavage + worm_development + WBls:0000172 + 61 min post first-cleavage Ce - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8260,20 +8287,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 62 min post first-cleavage - worm_development - WBls:0000173 - 62 min post first-cleavage Ce + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 62 min post first-cleavage + worm_development + WBls:0000173 + 62 min post first-cleavage Ce - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8296,20 +8323,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 63 min post first-cleavage - worm_development - WBls:0000174 - 63 min post first-cleavage Ce + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 63 min post first-cleavage + worm_development + WBls:0000174 + 63 min post first-cleavage Ce - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8332,20 +8359,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 64 min post first-cleavage - worm_development - WBls:0000175 - 64 min post first-cleavage Ce + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 64 min post first-cleavage + worm_development + WBls:0000175 + 64 min post first-cleavage Ce - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8368,20 +8395,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 65 min post first-cleavage - worm_development - WBls:0000176 - 65 min post first-cleavage Ce + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 65 min post first-cleavage + worm_development + WBls:0000176 + 65 min post first-cleavage Ce - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8404,20 +8431,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 66 min post first-cleavage - worm_development - WBls:0000177 - 66 min post first-cleavage Ce + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 66 min post first-cleavage + worm_development + WBls:0000177 + 66 min post first-cleavage Ce - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8440,20 +8467,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 67 min post first-cleavage - worm_development - WBls:0000178 - 67 min post first-cleavage Ce + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 67 min post first-cleavage + worm_development + WBls:0000178 + 67 min post first-cleavage Ce - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8476,20 +8503,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 68 min post first-cleavage - worm_development - WBls:0000179 - 68 min post first-cleavage Ce + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 68 min post first-cleavage + worm_development + WBls:0000179 + 68 min post first-cleavage Ce - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8512,20 +8539,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 69 min post first-cleavage - worm_development - WBls:0000180 - 69 min post first-cleavage Ce + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 69 min post first-cleavage + worm_development + WBls:0000180 + 69 min post first-cleavage Ce - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8548,20 +8575,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 70 min post first-cleavage - worm_development - WBls:0000181 - 70 min post first-cleavage Ce + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 70 min post first-cleavage + worm_development + WBls:0000181 + 70 min post first-cleavage Ce - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8584,20 +8611,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 71 min post first-cleavage - worm_development - WBls:0000182 - 71 min post first-cleavage Ce + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 71 min post first-cleavage + worm_development + WBls:0000182 + 71 min post first-cleavage Ce - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8620,20 +8647,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 72 min post first-cleavage - worm_development - WBls:0000183 - 72 min post first-cleavage Ce + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 72 min post first-cleavage + worm_development + WBls:0000183 + 72 min post first-cleavage Ce - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8656,20 +8683,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 73 min post first-cleavage - worm_development - WBls:0000184 - 73 min post first-cleavage Ce + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 73 min post first-cleavage + worm_development + WBls:0000184 + 73 min post first-cleavage Ce - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8692,20 +8719,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 74 min post first-cleavage - worm_development - WBls:0000185 - 74 min post first-cleavage Ce + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 74 min post first-cleavage + worm_development + WBls:0000185 + 74 min post first-cleavage Ce - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8728,20 +8755,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 75 min post first-cleavage - worm_development - WBls:0000186 - 75 min post first-cleavage Ce + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 75 min post first-cleavage + worm_development + WBls:0000186 + 75 min post first-cleavage Ce - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8764,20 +8791,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 76 min post first-cleavage - worm_development - WBls:0000187 - 76 min post first-cleavage Ce + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 76 min post first-cleavage + worm_development + WBls:0000187 + 76 min post first-cleavage Ce - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8800,20 +8827,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 77 min post first-cleavage - worm_development - WBls:0000188 - 77 min post first-cleavage Ce + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 77 min post first-cleavage + worm_development + WBls:0000188 + 77 min post first-cleavage Ce - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8836,20 +8863,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 78 min post first-cleavage - worm_development - WBls:0000189 - 78 min post first-cleavage Ce + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 78 min post first-cleavage + worm_development + WBls:0000189 + 78 min post first-cleavage Ce - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8872,20 +8899,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 79 min post first-cleavage - worm_development - WBls:0000190 - 79 min post first-cleavage Ce + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 79 min post first-cleavage + worm_development + WBls:0000190 + 79 min post first-cleavage Ce - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8908,20 +8935,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 80 min post first-cleavage - worm_development - WBls:0000191 - 80 min post first-cleavage Ce + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 80 min post first-cleavage + worm_development + WBls:0000191 + 80 min post first-cleavage Ce - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8944,20 +8971,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 81 min post first-cleavage - worm_development - WBls:0000192 - 81 min post first-cleavage Ce + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 81 min post first-cleavage + worm_development + WBls:0000192 + 81 min post first-cleavage Ce - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8980,20 +9007,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 82 min post first-cleavage - worm_development - WBls:0000193 - 82 min post first-cleavage Ce + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 82 min post first-cleavage + worm_development + WBls:0000193 + 82 min post first-cleavage Ce - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9016,20 +9043,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 83 min post first-cleavage - worm_development - WBls:0000194 - 83 min post first-cleavage Ce + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 83 min post first-cleavage + worm_development + WBls:0000194 + 83 min post first-cleavage Ce - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9052,20 +9079,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 84 min post first-cleavage - worm_development - WBls:0000195 - 84 min post first-cleavage Ce + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 84 min post first-cleavage + worm_development + WBls:0000195 + 84 min post first-cleavage Ce - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9088,20 +9115,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 85 min post first-cleavage - worm_development - WBls:0000196 - 85 min post first-cleavage Ce + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 85 min post first-cleavage + worm_development + WBls:0000196 + 85 min post first-cleavage Ce - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9124,20 +9151,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 86 min post first-cleavage - worm_development - WBls:0000197 - 86 min post first-cleavage Ce + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 86 min post first-cleavage + worm_development + WBls:0000197 + 86 min post first-cleavage Ce - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9160,20 +9187,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 87 min post first-cleavage - worm_development - WBls:0000198 - 87 min post first-cleavage Ce + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 87 min post first-cleavage + worm_development + WBls:0000198 + 87 min post first-cleavage Ce - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9196,20 +9223,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 88 min post first-cleavage - worm_development - WBls:0000199 - 88 min post first-cleavage Ce + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 88 min post first-cleavage + worm_development + WBls:0000199 + 88 min post first-cleavage Ce - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9232,20 +9259,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 89 min post first-cleavage - worm_development - WBls:0000200 - 89 min post first-cleavage Ce + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 89 min post first-cleavage + worm_development + WBls:0000200 + 89 min post first-cleavage Ce - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9268,20 +9295,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 90 min post first-cleavage - worm_development - WBls:0000201 - 90 min post first-cleavage Ce + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 90 min post first-cleavage + worm_development + WBls:0000201 + 90 min post first-cleavage Ce - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9304,20 +9331,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 91 min post first-cleavage - worm_development - WBls:0000202 - 91 min post first-cleavage Ce + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 91 min post first-cleavage + worm_development + WBls:0000202 + 91 min post first-cleavage Ce - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9340,20 +9367,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 92 min post first-cleavage - worm_development - WBls:0000203 - 92 min post first-cleavage Ce + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 92 min post first-cleavage + worm_development + WBls:0000203 + 92 min post first-cleavage Ce - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9376,20 +9403,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 93 min post first-cleavage - worm_development - WBls:0000204 - 93 min post first-cleavage Ce + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 93 min post first-cleavage + worm_development + WBls:0000204 + 93 min post first-cleavage Ce - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9412,20 +9439,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 94 min post first-cleavage - worm_development - WBls:0000205 - 94 min post first-cleavage Ce + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 94 min post first-cleavage + worm_development + WBls:0000205 + 94 min post first-cleavage Ce - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9448,20 +9475,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 95 min post first-cleavage - worm_development - WBls:0000206 - 95 min post first-cleavage Ce + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 95 min post first-cleavage + worm_development + WBls:0000206 + 95 min post first-cleavage Ce - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9484,20 +9511,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 96 min post first-cleavage - worm_development - WBls:0000207 - 96 min post first-cleavage Ce + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 96 min post first-cleavage + worm_development + WBls:0000207 + 96 min post first-cleavage Ce - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9520,20 +9547,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 97 min post first-cleavage - worm_development - WBls:0000208 - 97 min post first-cleavage Ce + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 97 min post first-cleavage + worm_development + WBls:0000208 + 97 min post first-cleavage Ce - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9556,20 +9583,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 98 min post first-cleavage - worm_development - WBls:0000209 - 98 min post first-cleavage Ce + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 98 min post first-cleavage + worm_development + WBls:0000209 + 98 min post first-cleavage Ce - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9592,20 +9619,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 99 min post first-cleavage - worm_development - WBls:0000210 - 99 min post first-cleavage Ce + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 99 min post first-cleavage + worm_development + WBls:0000210 + 99 min post first-cleavage Ce - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9628,20 +9655,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 100 min post first-cleavage - worm_development - WBls:0000211 - 100 min post first-cleavage Ce + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 100 min post first-cleavage + worm_development + WBls:0000211 + 100 min post first-cleavage Ce - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9664,20 +9691,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 101 min post first-cleavage - worm_development - WBls:0000212 - 101 min post first-cleavage Ce + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 101 min post first-cleavage + worm_development + WBls:0000212 + 101 min post first-cleavage Ce - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9700,20 +9727,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 102 min post first-cleavage - worm_development - WBls:0000213 - 102 min post first-cleavage Ce + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 102 min post first-cleavage + worm_development + WBls:0000213 + 102 min post first-cleavage Ce - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9736,20 +9763,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 103 min post first-cleavage - worm_development - WBls:0000214 - 103 min post first-cleavage Ce + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 103 min post first-cleavage + worm_development + WBls:0000214 + 103 min post first-cleavage Ce - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9772,20 +9799,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 104 min post first-cleavage - worm_development - WBls:0000215 - 104 min post first-cleavage Ce + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 104 min post first-cleavage + worm_development + WBls:0000215 + 104 min post first-cleavage Ce - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9808,20 +9835,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 105 min post first-cleavage - worm_development - WBls:0000216 - 105 min post first-cleavage Ce + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 105 min post first-cleavage + worm_development + WBls:0000216 + 105 min post first-cleavage Ce - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9844,20 +9871,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 106 min post first-cleavage - worm_development - WBls:0000217 - 106 min post first-cleavage Ce + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 106 min post first-cleavage + worm_development + WBls:0000217 + 106 min post first-cleavage Ce - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9880,20 +9907,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 107 min post first-cleavage - worm_development - WBls:0000218 - 107 min post first-cleavage Ce + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 107 min post first-cleavage + worm_development + WBls:0000218 + 107 min post first-cleavage Ce - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9916,20 +9943,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 108 min post first-cleavage - worm_development - WBls:0000219 - 108 min post first-cleavage Ce + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 108 min post first-cleavage + worm_development + WBls:0000219 + 108 min post first-cleavage Ce - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9952,20 +9979,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 109 min post first-cleavage - worm_development - WBls:0000220 - 109 min post first-cleavage Ce + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 109 min post first-cleavage + worm_development + WBls:0000220 + 109 min post first-cleavage Ce - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9988,20 +10015,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 110 min post first-cleavage - worm_development - WBls:0000221 - 110 min post first-cleavage Ce + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 110 min post first-cleavage + worm_development + WBls:0000221 + 110 min post first-cleavage Ce - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10024,20 +10051,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 111 min post first-cleavage - worm_development - WBls:0000222 - 111 min post first-cleavage Ce + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 111 min post first-cleavage + worm_development + WBls:0000222 + 111 min post first-cleavage Ce - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10060,20 +10087,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 112 min post first-cleavage - worm_development - WBls:0000223 - 112 min post first-cleavage Ce + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 112 min post first-cleavage + worm_development + WBls:0000223 + 112 min post first-cleavage Ce - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10096,20 +10123,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 113 min post first-cleavage - worm_development - WBls:0000224 - 113 min post first-cleavage Ce + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 113 min post first-cleavage + worm_development + WBls:0000224 + 113 min post first-cleavage Ce - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10132,20 +10159,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 114 min post first-cleavage - worm_development - WBls:0000225 - 114 min post first-cleavage Ce + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 114 min post first-cleavage + worm_development + WBls:0000225 + 114 min post first-cleavage Ce - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10168,20 +10195,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 115 min post first-cleavage - worm_development - WBls:0000226 - 115 min post first-cleavage Ce + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 115 min post first-cleavage + worm_development + WBls:0000226 + 115 min post first-cleavage Ce - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10204,20 +10231,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 116 min post first-cleavage - worm_development - WBls:0000227 - 116 min post first-cleavage Ce + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 116 min post first-cleavage + worm_development + WBls:0000227 + 116 min post first-cleavage Ce - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10240,20 +10267,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 117 min post first-cleavage - worm_development - WBls:0000228 - 117 min post first-cleavage Ce + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 117 min post first-cleavage + worm_development + WBls:0000228 + 117 min post first-cleavage Ce - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10276,20 +10303,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 118 min post first-cleavage - worm_development - WBls:0000229 - 118 min post first-cleavage Ce + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 118 min post first-cleavage + worm_development + WBls:0000229 + 118 min post first-cleavage Ce - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10312,20 +10339,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 119 min post first-cleavage - worm_development - WBls:0000230 - 119 min post first-cleavage Ce + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 119 min post first-cleavage + worm_development + WBls:0000230 + 119 min post first-cleavage Ce - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10348,20 +10375,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 120 min post first-cleavage - worm_development - WBls:0000231 - 120 min post first-cleavage Ce + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 120 min post first-cleavage + worm_development + WBls:0000231 + 120 min post first-cleavage Ce - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10384,20 +10411,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 121 min post first-cleavage - worm_development - WBls:0000232 - 121 min post first-cleavage Ce + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 121 min post first-cleavage + worm_development + WBls:0000232 + 121 min post first-cleavage Ce - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10420,20 +10447,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 122 min post first-cleavage - worm_development - WBls:0000233 - 122 min post first-cleavage Ce + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 122 min post first-cleavage + worm_development + WBls:0000233 + 122 min post first-cleavage Ce - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10456,20 +10483,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 123 min post first-cleavage - worm_development - WBls:0000234 - 123 min post first-cleavage Ce + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 123 min post first-cleavage + worm_development + WBls:0000234 + 123 min post first-cleavage Ce - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10492,20 +10519,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 124 min post first-cleavage - worm_development - WBls:0000235 - 124 min post first-cleavage Ce + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 124 min post first-cleavage + worm_development + WBls:0000235 + 124 min post first-cleavage Ce - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10528,20 +10555,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 125 min post first-cleavage - worm_development - WBls:0000236 - 125 min post first-cleavage Ce + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 125 min post first-cleavage + worm_development + WBls:0000236 + 125 min post first-cleavage Ce - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10564,20 +10591,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 126 min post first-cleavage - worm_development - WBls:0000237 - 126 min post first-cleavage Ce + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 126 min post first-cleavage + worm_development + WBls:0000237 + 126 min post first-cleavage Ce - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10600,20 +10627,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 127 min post first-cleavage - worm_development - WBls:0000238 - 127 min post first-cleavage Ce + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 127 min post first-cleavage + worm_development + WBls:0000238 + 127 min post first-cleavage Ce - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10636,20 +10663,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 128 min post first-cleavage - worm_development - WBls:0000239 - 128 min post first-cleavage Ce + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 128 min post first-cleavage + worm_development + WBls:0000239 + 128 min post first-cleavage Ce - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10672,20 +10699,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 129 min post first-cleavage - worm_development - WBls:0000240 - 129 min post first-cleavage Ce + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 129 min post first-cleavage + worm_development + WBls:0000240 + 129 min post first-cleavage Ce - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10708,20 +10735,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 130 min post first-cleavage - worm_development - WBls:0000241 - 130 min post first-cleavage Ce + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 130 min post first-cleavage + worm_development + WBls:0000241 + 130 min post first-cleavage Ce - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10744,20 +10771,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 131 min post first-cleavage - worm_development - WBls:0000242 - 131 min post first-cleavage Ce + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 131 min post first-cleavage + worm_development + WBls:0000242 + 131 min post first-cleavage Ce - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10780,20 +10807,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 132 min post first-cleavage - worm_development - WBls:0000243 - 132 min post first-cleavage Ce + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 132 min post first-cleavage + worm_development + WBls:0000243 + 132 min post first-cleavage Ce - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10816,20 +10843,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 133 min post first-cleavage - worm_development - WBls:0000244 - 133 min post first-cleavage Ce + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 133 min post first-cleavage + worm_development + WBls:0000244 + 133 min post first-cleavage Ce - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10852,20 +10879,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 134 min post first-cleavage - worm_development - WBls:0000245 - 134 min post first-cleavage Ce + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 134 min post first-cleavage + worm_development + WBls:0000245 + 134 min post first-cleavage Ce - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10888,20 +10915,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 135 min post first-cleavage - worm_development - WBls:0000246 - 135 min post first-cleavage Ce + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 135 min post first-cleavage + worm_development + WBls:0000246 + 135 min post first-cleavage Ce - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10924,20 +10951,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 136 min post first-cleavage - worm_development - WBls:0000247 - 136 min post first-cleavage Ce + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 136 min post first-cleavage + worm_development + WBls:0000247 + 136 min post first-cleavage Ce - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10960,20 +10987,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 137 min post first-cleavage - worm_development - WBls:0000248 - 137 min post first-cleavage Ce + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 137 min post first-cleavage + worm_development + WBls:0000248 + 137 min post first-cleavage Ce - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10996,20 +11023,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 138 min post first-cleavage - worm_development - WBls:0000249 - 138 min post first-cleavage Ce + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 138 min post first-cleavage + worm_development + WBls:0000249 + 138 min post first-cleavage Ce - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11032,20 +11059,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 139 min post first-cleavage - worm_development - WBls:0000250 - 139 min post first-cleavage Ce + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 139 min post first-cleavage + worm_development + WBls:0000250 + 139 min post first-cleavage Ce - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11068,20 +11095,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 140 min post first-cleavage - worm_development - WBls:0000251 - 140 min post first-cleavage Ce + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 140 min post first-cleavage + worm_development + WBls:0000251 + 140 min post first-cleavage Ce - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11104,20 +11131,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 141 min post first-cleavage - worm_development - WBls:0000252 - 141 min post first-cleavage Ce + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 141 min post first-cleavage + worm_development + WBls:0000252 + 141 min post first-cleavage Ce - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11140,20 +11167,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 142 min post first-cleavage - worm_development - WBls:0000253 - 142 min post first-cleavage Ce + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 142 min post first-cleavage + worm_development + WBls:0000253 + 142 min post first-cleavage Ce - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11176,20 +11203,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 143 min post first-cleavage - worm_development - WBls:0000254 - 143 min post first-cleavage Ce + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 143 min post first-cleavage + worm_development + WBls:0000254 + 143 min post first-cleavage Ce - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11212,20 +11239,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 144 min post first-cleavage - worm_development - WBls:0000255 - 144 min post first-cleavage Ce + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 144 min post first-cleavage + worm_development + WBls:0000255 + 144 min post first-cleavage Ce - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11248,20 +11275,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 145 min post first-cleavage - worm_development - WBls:0000256 - 145 min post first-cleavage Ce + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 145 min post first-cleavage + worm_development + WBls:0000256 + 145 min post first-cleavage Ce - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11284,20 +11311,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 146 min post first-cleavage - worm_development - WBls:0000257 - 146 min post first-cleavage Ce + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 146 min post first-cleavage + worm_development + WBls:0000257 + 146 min post first-cleavage Ce - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11320,20 +11347,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 147 min post first-cleavage - worm_development - WBls:0000258 - 147 min post first-cleavage Ce + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 147 min post first-cleavage + worm_development + WBls:0000258 + 147 min post first-cleavage Ce - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11356,20 +11383,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 148 min post first-cleavage - worm_development - WBls:0000259 - 148 min post first-cleavage Ce + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 148 min post first-cleavage + worm_development + WBls:0000259 + 148 min post first-cleavage Ce - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11392,20 +11419,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 149 min post first-cleavage - worm_development - WBls:0000260 - 149 min post first-cleavage Ce + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 149 min post first-cleavage + worm_development + WBls:0000260 + 149 min post first-cleavage Ce - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11428,20 +11455,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 150 min post first-cleavage - worm_development - WBls:0000261 - 150 min post first-cleavage Ce + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 150 min post first-cleavage + worm_development + WBls:0000261 + 150 min post first-cleavage Ce - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11464,20 +11491,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 151 min post first-cleavage - worm_development - WBls:0000262 - 151 min post first-cleavage Ce + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 151 min post first-cleavage + worm_development + WBls:0000262 + 151 min post first-cleavage Ce - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11500,20 +11527,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 152 min post first-cleavage - worm_development - WBls:0000263 - 152 min post first-cleavage Ce + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 152 min post first-cleavage + worm_development + WBls:0000263 + 152 min post first-cleavage Ce - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11536,20 +11563,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 153 min post first-cleavage - worm_development - WBls:0000264 - 153 min post first-cleavage Ce + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 153 min post first-cleavage + worm_development + WBls:0000264 + 153 min post first-cleavage Ce - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11572,20 +11599,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 154 min post first-cleavage - worm_development - WBls:0000265 - 154 min post first-cleavage Ce + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 154 min post first-cleavage + worm_development + WBls:0000265 + 154 min post first-cleavage Ce - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11608,20 +11635,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 155 min post first-cleavage - worm_development - WBls:0000266 - 155 min post first-cleavage Ce + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 155 min post first-cleavage + worm_development + WBls:0000266 + 155 min post first-cleavage Ce - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11644,20 +11671,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 156 min post first-cleavage - worm_development - WBls:0000267 - 156 min post first-cleavage Ce + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 156 min post first-cleavage + worm_development + WBls:0000267 + 156 min post first-cleavage Ce - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11680,20 +11707,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 157 min post first-cleavage - worm_development - WBls:0000268 - 157 min post first-cleavage Ce + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 157 min post first-cleavage + worm_development + WBls:0000268 + 157 min post first-cleavage Ce - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11716,20 +11743,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 158 min post first-cleavage - worm_development - WBls:0000269 - 158 min post first-cleavage Ce + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 158 min post first-cleavage + worm_development + WBls:0000269 + 158 min post first-cleavage Ce - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11752,20 +11779,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 159 min post first-cleavage - worm_development - WBls:0000270 - 159 min post first-cleavage Ce + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 159 min post first-cleavage + worm_development + WBls:0000270 + 159 min post first-cleavage Ce - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11788,20 +11815,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 160 min post first-cleavage - worm_development - WBls:0000271 - 160 min post first-cleavage Ce + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 160 min post first-cleavage + worm_development + WBls:0000271 + 160 min post first-cleavage Ce - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11824,20 +11851,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 161 min post first-cleavage - worm_development - WBls:0000272 - 161 min post first-cleavage Ce + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 161 min post first-cleavage + worm_development + WBls:0000272 + 161 min post first-cleavage Ce - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11860,20 +11887,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 162 min post first-cleavage - worm_development - WBls:0000273 - 162 min post first-cleavage Ce + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 162 min post first-cleavage + worm_development + WBls:0000273 + 162 min post first-cleavage Ce - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11896,20 +11923,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 163 min post first-cleavage - worm_development - WBls:0000274 - 163 min post first-cleavage Ce + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 163 min post first-cleavage + worm_development + WBls:0000274 + 163 min post first-cleavage Ce - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11932,20 +11959,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 164 min post first-cleavage - worm_development - WBls:0000275 - 164 min post first-cleavage Ce + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 164 min post first-cleavage + worm_development + WBls:0000275 + 164 min post first-cleavage Ce - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11968,20 +11995,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 165 min post first-cleavage - worm_development - WBls:0000276 - 165 min post first-cleavage Ce + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 165 min post first-cleavage + worm_development + WBls:0000276 + 165 min post first-cleavage Ce - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12004,20 +12031,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 166 min post first-cleavage - worm_development - WBls:0000277 - 166 min post first-cleavage Ce + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 166 min post first-cleavage + worm_development + WBls:0000277 + 166 min post first-cleavage Ce - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12040,20 +12067,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 167 min post first-cleavage - worm_development - WBls:0000278 - 167 min post first-cleavage Ce + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 167 min post first-cleavage + worm_development + WBls:0000278 + 167 min post first-cleavage Ce - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12076,20 +12103,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 168 min post first-cleavage - worm_development - WBls:0000279 - 168 min post first-cleavage Ce + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 168 min post first-cleavage + worm_development + WBls:0000279 + 168 min post first-cleavage Ce - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12112,20 +12139,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 169 min post first-cleavage - worm_development - WBls:0000280 - 169 min post first-cleavage Ce + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 169 min post first-cleavage + worm_development + WBls:0000280 + 169 min post first-cleavage Ce - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12148,20 +12175,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 170 min post first-cleavage - worm_development - WBls:0000281 - 170 min post first-cleavage Ce + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 170 min post first-cleavage + worm_development + WBls:0000281 + 170 min post first-cleavage Ce - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12184,20 +12211,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 171 min post first-cleavage - worm_development - WBls:0000282 - 171 min post first-cleavage Ce + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 171 min post first-cleavage + worm_development + WBls:0000282 + 171 min post first-cleavage Ce - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12220,20 +12247,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 172 min post first-cleavage - worm_development - WBls:0000283 - 172 min post first-cleavage Ce + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 172 min post first-cleavage + worm_development + WBls:0000283 + 172 min post first-cleavage Ce - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12256,20 +12283,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 173 min post first-cleavage - worm_development - WBls:0000284 - 173 min post first-cleavage Ce + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 173 min post first-cleavage + worm_development + WBls:0000284 + 173 min post first-cleavage Ce - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12292,20 +12319,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 174 min post first-cleavage - worm_development - WBls:0000285 - 174 min post first-cleavage Ce + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 174 min post first-cleavage + worm_development + WBls:0000285 + 174 min post first-cleavage Ce - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12328,20 +12355,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 175 min post first-cleavage - worm_development - WBls:0000286 - 175 min post first-cleavage Ce + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 175 min post first-cleavage + worm_development + WBls:0000286 + 175 min post first-cleavage Ce - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12364,20 +12391,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 176 min post first-cleavage - worm_development - WBls:0000287 - 176 min post first-cleavage Ce + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 176 min post first-cleavage + worm_development + WBls:0000287 + 176 min post first-cleavage Ce - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12400,20 +12427,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 177 min post first-cleavage - worm_development - WBls:0000288 - 177 min post first-cleavage Ce + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 177 min post first-cleavage + worm_development + WBls:0000288 + 177 min post first-cleavage Ce - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12436,20 +12463,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 178 min post first-cleavage - worm_development - WBls:0000289 - 178 min post first-cleavage Ce + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 178 min post first-cleavage + worm_development + WBls:0000289 + 178 min post first-cleavage Ce - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12472,20 +12499,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 179 min post first-cleavage - worm_development - WBls:0000290 - 179 min post first-cleavage Ce + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 179 min post first-cleavage + worm_development + WBls:0000290 + 179 min post first-cleavage Ce - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12508,20 +12535,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 180 min post first-cleavage - worm_development - WBls:0000291 - 180 min post first-cleavage Ce + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 180 min post first-cleavage + worm_development + WBls:0000291 + 180 min post first-cleavage Ce - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12544,20 +12571,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 181 min post first-cleavage - worm_development - WBls:0000292 - 181 min post first-cleavage Ce + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 181 min post first-cleavage + worm_development + WBls:0000292 + 181 min post first-cleavage Ce - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12580,20 +12607,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 182 min post first-cleavage - worm_development - WBls:0000293 - 182 min post first-cleavage Ce + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 182 min post first-cleavage + worm_development + WBls:0000293 + 182 min post first-cleavage Ce - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12616,20 +12643,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 183 min post first-cleavage - worm_development - WBls:0000294 - 183 min post first-cleavage Ce + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 183 min post first-cleavage + worm_development + WBls:0000294 + 183 min post first-cleavage Ce - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12652,20 +12679,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 184 min post first-cleavage - worm_development - WBls:0000295 - 184 min post first-cleavage Ce + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 184 min post first-cleavage + worm_development + WBls:0000295 + 184 min post first-cleavage Ce - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12688,20 +12715,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 185 min post first-cleavage - worm_development - WBls:0000296 - 185 min post first-cleavage Ce + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 185 min post first-cleavage + worm_development + WBls:0000296 + 185 min post first-cleavage Ce - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12724,20 +12751,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 186 min post first-cleavage - worm_development - WBls:0000297 - 186 min post first-cleavage Ce + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 186 min post first-cleavage + worm_development + WBls:0000297 + 186 min post first-cleavage Ce - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12760,20 +12787,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 187 min post first-cleavage - worm_development - WBls:0000298 - 187 min post first-cleavage Ce + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 187 min post first-cleavage + worm_development + WBls:0000298 + 187 min post first-cleavage Ce - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12796,20 +12823,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 188 min post first-cleavage - worm_development - WBls:0000299 - 188 min post first-cleavage Ce + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 188 min post first-cleavage + worm_development + WBls:0000299 + 188 min post first-cleavage Ce - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12832,20 +12859,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 189 min post first-cleavage - worm_development - WBls:0000300 - 189 min post first-cleavage Ce + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 189 min post first-cleavage + worm_development + WBls:0000300 + 189 min post first-cleavage Ce - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12868,20 +12895,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 190 min post first-cleavage - worm_development - WBls:0000301 - 190 min post first-cleavage Ce + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 190 min post first-cleavage + worm_development + WBls:0000301 + 190 min post first-cleavage Ce - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12904,20 +12931,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 191 min post first-cleavage - worm_development - WBls:0000302 - 191 min post first-cleavage Ce + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 191 min post first-cleavage + worm_development + WBls:0000302 + 191 min post first-cleavage Ce - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12940,20 +12967,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 192 min post first-cleavage - worm_development - WBls:0000303 - 192 min post first-cleavage Ce + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 192 min post first-cleavage + worm_development + WBls:0000303 + 192 min post first-cleavage Ce - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12976,20 +13003,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 193 min post first-cleavage - worm_development - WBls:0000304 - 193 min post first-cleavage Ce + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 193 min post first-cleavage + worm_development + WBls:0000304 + 193 min post first-cleavage Ce - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13012,20 +13039,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 194 min post first-cleavage - worm_development - WBls:0000305 - 194 min post first-cleavage Ce + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 194 min post first-cleavage + worm_development + WBls:0000305 + 194 min post first-cleavage Ce - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13048,20 +13075,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 195 min post first-cleavage - worm_development - WBls:0000306 - 195 min post first-cleavage Ce + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 195 min post first-cleavage + worm_development + WBls:0000306 + 195 min post first-cleavage Ce - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13084,20 +13111,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 196 min post first-cleavage - worm_development - WBls:0000307 - 196 min post first-cleavage Ce + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 196 min post first-cleavage + worm_development + WBls:0000307 + 196 min post first-cleavage Ce - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13120,20 +13147,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 197 min post first-cleavage - worm_development - WBls:0000308 - 197 min post first-cleavage Ce + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 197 min post first-cleavage + worm_development + WBls:0000308 + 197 min post first-cleavage Ce - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13156,20 +13183,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 198 min post first-cleavage - worm_development - WBls:0000309 - 198 min post first-cleavage Ce + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 198 min post first-cleavage + worm_development + WBls:0000309 + 198 min post first-cleavage Ce - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13192,20 +13219,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 199 min post first-cleavage - worm_development - WBls:0000310 - 199 min post first-cleavage Ce + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 199 min post first-cleavage + worm_development + WBls:0000310 + 199 min post first-cleavage Ce - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13228,20 +13255,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 200 min post first-cleavage - worm_development - WBls:0000311 - 200 min post first-cleavage Ce + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 200 min post first-cleavage + worm_development + WBls:0000311 + 200 min post first-cleavage Ce - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13264,20 +13291,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 201 min post first-cleavage - worm_development - WBls:0000312 - 201 min post first-cleavage Ce + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 201 min post first-cleavage + worm_development + WBls:0000312 + 201 min post first-cleavage Ce - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13300,20 +13327,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 202 min post first-cleavage - worm_development - WBls:0000313 - 202 min post first-cleavage Ce + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 202 min post first-cleavage + worm_development + WBls:0000313 + 202 min post first-cleavage Ce - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13336,20 +13363,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 203 min post first-cleavage - worm_development - WBls:0000314 - 203 min post first-cleavage Ce + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 203 min post first-cleavage + worm_development + WBls:0000314 + 203 min post first-cleavage Ce - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13372,20 +13399,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 204 min post first-cleavage - worm_development - WBls:0000315 - 204 min post first-cleavage Ce + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 204 min post first-cleavage + worm_development + WBls:0000315 + 204 min post first-cleavage Ce - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13408,20 +13435,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 205 min post first-cleavage - worm_development - WBls:0000316 - 205 min post first-cleavage Ce + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 205 min post first-cleavage + worm_development + WBls:0000316 + 205 min post first-cleavage Ce - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13444,20 +13471,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 206 min post first-cleavage - worm_development - WBls:0000317 - 206 min post first-cleavage Ce + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 206 min post first-cleavage + worm_development + WBls:0000317 + 206 min post first-cleavage Ce - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13480,20 +13507,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 207 min post first-cleavage - worm_development - WBls:0000318 - 207 min post first-cleavage Ce + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 207 min post first-cleavage + worm_development + WBls:0000318 + 207 min post first-cleavage Ce - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13516,20 +13543,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 208 min post first-cleavage - worm_development - WBls:0000319 - 208 min post first-cleavage Ce + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 208 min post first-cleavage + worm_development + WBls:0000319 + 208 min post first-cleavage Ce - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13552,20 +13579,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 209 min post first-cleavage - worm_development - WBls:0000320 - 209 min post first-cleavage Ce + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 209 min post first-cleavage + worm_development + WBls:0000320 + 209 min post first-cleavage Ce - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13588,20 +13615,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 210 min post first-cleavage - worm_development - WBls:0000321 - 210 min post first-cleavage Ce + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 210 min post first-cleavage + worm_development + WBls:0000321 + 210 min post first-cleavage Ce - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13624,20 +13651,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 211 min post first-cleavage - worm_development - WBls:0000322 - 211 min post first-cleavage Ce + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 211 min post first-cleavage + worm_development + WBls:0000322 + 211 min post first-cleavage Ce - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13660,20 +13687,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 212 min post first-cleavage - worm_development - WBls:0000323 - 212 min post first-cleavage Ce + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 212 min post first-cleavage + worm_development + WBls:0000323 + 212 min post first-cleavage Ce - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13696,20 +13723,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 213 min post first-cleavage - worm_development - WBls:0000324 - 213 min post first-cleavage Ce + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 213 min post first-cleavage + worm_development + WBls:0000324 + 213 min post first-cleavage Ce - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13732,20 +13759,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 214 min post first-cleavage - worm_development - WBls:0000325 - 214 min post first-cleavage Ce + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 214 min post first-cleavage + worm_development + WBls:0000325 + 214 min post first-cleavage Ce - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13768,20 +13795,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 215 min post first-cleavage - worm_development - WBls:0000326 - 215 min post first-cleavage Ce + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 215 min post first-cleavage + worm_development + WBls:0000326 + 215 min post first-cleavage Ce - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13804,20 +13831,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 216 min post first-cleavage - worm_development - WBls:0000327 - 216 min post first-cleavage Ce + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 216 min post first-cleavage + worm_development + WBls:0000327 + 216 min post first-cleavage Ce - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13840,20 +13867,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 217 min post first-cleavage - worm_development - WBls:0000328 - 217 min post first-cleavage Ce + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 217 min post first-cleavage + worm_development + WBls:0000328 + 217 min post first-cleavage Ce - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13876,20 +13903,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 218 min post first-cleavage - worm_development - WBls:0000329 - 218 min post first-cleavage Ce + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 218 min post first-cleavage + worm_development + WBls:0000329 + 218 min post first-cleavage Ce - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13912,20 +13939,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 219 min post first-cleavage - worm_development - WBls:0000330 - 219 min post first-cleavage Ce + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 219 min post first-cleavage + worm_development + WBls:0000330 + 219 min post first-cleavage Ce - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13948,20 +13975,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 220 min post first-cleavage - worm_development - WBls:0000331 - 220 min post first-cleavage Ce + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 220 min post first-cleavage + worm_development + WBls:0000331 + 220 min post first-cleavage Ce - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13984,20 +14011,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 221 min post first-cleavage - worm_development - WBls:0000332 - 221 min post first-cleavage Ce + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 221 min post first-cleavage + worm_development + WBls:0000332 + 221 min post first-cleavage Ce - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14020,20 +14047,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 222 min post first-cleavage - worm_development - WBls:0000333 - 222 min post first-cleavage Ce + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 222 min post first-cleavage + worm_development + WBls:0000333 + 222 min post first-cleavage Ce - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14056,20 +14083,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 223 min post first-cleavage - worm_development - WBls:0000334 - 223 min post first-cleavage Ce + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 223 min post first-cleavage + worm_development + WBls:0000334 + 223 min post first-cleavage Ce - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14092,20 +14119,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 224 min post first-cleavage - worm_development - WBls:0000335 - 224 min post first-cleavage Ce + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 224 min post first-cleavage + worm_development + WBls:0000335 + 224 min post first-cleavage Ce - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14128,20 +14155,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 225 min post first-cleavage - worm_development - WBls:0000336 - 225 min post first-cleavage Ce + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 225 min post first-cleavage + worm_development + WBls:0000336 + 225 min post first-cleavage Ce - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14164,20 +14191,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 226 min post first-cleavage - worm_development - WBls:0000337 - 226 min post first-cleavage Ce + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 226 min post first-cleavage + worm_development + WBls:0000337 + 226 min post first-cleavage Ce - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14200,20 +14227,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 227 min post first-cleavage - worm_development - WBls:0000338 - 227 min post first-cleavage Ce + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 227 min post first-cleavage + worm_development + WBls:0000338 + 227 min post first-cleavage Ce - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14236,20 +14263,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 228 min post first-cleavage - worm_development - WBls:0000339 - 228 min post first-cleavage Ce + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 228 min post first-cleavage + worm_development + WBls:0000339 + 228 min post first-cleavage Ce - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14272,20 +14299,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 229 min post first-cleavage - worm_development - WBls:0000340 - 229 min post first-cleavage Ce + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 229 min post first-cleavage + worm_development + WBls:0000340 + 229 min post first-cleavage Ce - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14308,20 +14335,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 230 min post first-cleavage - worm_development - WBls:0000341 - 230 min post first-cleavage Ce + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 230 min post first-cleavage + worm_development + WBls:0000341 + 230 min post first-cleavage Ce - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14344,20 +14371,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 231 min post first-cleavage - worm_development - WBls:0000342 - 231 min post first-cleavage Ce + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 231 min post first-cleavage + worm_development + WBls:0000342 + 231 min post first-cleavage Ce - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14380,20 +14407,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 232 min post first-cleavage - worm_development - WBls:0000343 - 232 min post first-cleavage Ce + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 232 min post first-cleavage + worm_development + WBls:0000343 + 232 min post first-cleavage Ce - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14416,20 +14443,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 233 min post first-cleavage - worm_development - WBls:0000344 - 233 min post first-cleavage Ce + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 233 min post first-cleavage + worm_development + WBls:0000344 + 233 min post first-cleavage Ce - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14452,20 +14479,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 234 min post first-cleavage - worm_development - WBls:0000345 - 234 min post first-cleavage Ce + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 234 min post first-cleavage + worm_development + WBls:0000345 + 234 min post first-cleavage Ce - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14488,20 +14515,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 235 min post first-cleavage - worm_development - WBls:0000346 - 235 min post first-cleavage Ce + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 235 min post first-cleavage + worm_development + WBls:0000346 + 235 min post first-cleavage Ce - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14524,20 +14551,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 236 min post first-cleavage - worm_development - WBls:0000347 - 236 min post first-cleavage Ce + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 236 min post first-cleavage + worm_development + WBls:0000347 + 236 min post first-cleavage Ce - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14560,20 +14587,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 237 min post first-cleavage - worm_development - WBls:0000348 - 237 min post first-cleavage Ce + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 237 min post first-cleavage + worm_development + WBls:0000348 + 237 min post first-cleavage Ce - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14596,20 +14623,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 238 min post first-cleavage - worm_development - WBls:0000349 - 238 min post first-cleavage Ce + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 238 min post first-cleavage + worm_development + WBls:0000349 + 238 min post first-cleavage Ce - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14632,20 +14659,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 239 min post first-cleavage - worm_development - WBls:0000350 - 239 min post first-cleavage Ce + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 239 min post first-cleavage + worm_development + WBls:0000350 + 239 min post first-cleavage Ce - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14668,20 +14695,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 240 min post first-cleavage - worm_development - WBls:0000351 - 240 min post first-cleavage Ce + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 240 min post first-cleavage + worm_development + WBls:0000351 + 240 min post first-cleavage Ce - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14704,20 +14731,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 241 min post first-cleavage - worm_development - WBls:0000352 - 241 min post first-cleavage Ce + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 241 min post first-cleavage + worm_development + WBls:0000352 + 241 min post first-cleavage Ce - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14740,20 +14767,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 242 min post first-cleavage - worm_development - WBls:0000353 - 242 min post first-cleavage Ce + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 242 min post first-cleavage + worm_development + WBls:0000353 + 242 min post first-cleavage Ce - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14776,20 +14803,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 243 min post first-cleavage - worm_development - WBls:0000354 - 243 min post first-cleavage Ce + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 243 min post first-cleavage + worm_development + WBls:0000354 + 243 min post first-cleavage Ce - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14812,20 +14839,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 244 min post first-cleavage - worm_development - WBls:0000355 - 244 min post first-cleavage Ce + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 244 min post first-cleavage + worm_development + WBls:0000355 + 244 min post first-cleavage Ce - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14848,20 +14875,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 245 min post first-cleavage - worm_development - WBls:0000356 - 245 min post first-cleavage Ce + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 245 min post first-cleavage + worm_development + WBls:0000356 + 245 min post first-cleavage Ce - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14884,20 +14911,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 246 min post first-cleavage - worm_development - WBls:0000357 - 246 min post first-cleavage Ce + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 246 min post first-cleavage + worm_development + WBls:0000357 + 246 min post first-cleavage Ce - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14920,20 +14947,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 247 min post first-cleavage - worm_development - WBls:0000358 - 247 min post first-cleavage Ce + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 247 min post first-cleavage + worm_development + WBls:0000358 + 247 min post first-cleavage Ce - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14956,20 +14983,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 248 min post first-cleavage - worm_development - WBls:0000359 - 248 min post first-cleavage Ce + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 248 min post first-cleavage + worm_development + WBls:0000359 + 248 min post first-cleavage Ce - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14992,20 +15019,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 249 min post first-cleavage - worm_development - WBls:0000360 - 249 min post first-cleavage Ce + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 249 min post first-cleavage + worm_development + WBls:0000360 + 249 min post first-cleavage Ce - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15028,20 +15055,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 250 min post first-cleavage - worm_development - WBls:0000361 - 250 min post first-cleavage Ce + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 250 min post first-cleavage + worm_development + WBls:0000361 + 250 min post first-cleavage Ce - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15064,20 +15091,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 251 min post first-cleavage - worm_development - WBls:0000362 - 251 min post first-cleavage Ce + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 251 min post first-cleavage + worm_development + WBls:0000362 + 251 min post first-cleavage Ce - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15100,20 +15127,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 252 min post first-cleavage - worm_development - WBls:0000363 - 252 min post first-cleavage Ce + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 252 min post first-cleavage + worm_development + WBls:0000363 + 252 min post first-cleavage Ce - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15136,20 +15163,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 253 min post first-cleavage - worm_development - WBls:0000364 - 253 min post first-cleavage Ce + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 253 min post first-cleavage + worm_development + WBls:0000364 + 253 min post first-cleavage Ce - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15172,20 +15199,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 254 min post first-cleavage - worm_development - WBls:0000365 - 254 min post first-cleavage Ce + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 254 min post first-cleavage + worm_development + WBls:0000365 + 254 min post first-cleavage Ce - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15208,20 +15235,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 255 min post first-cleavage - worm_development - WBls:0000366 - 255 min post first-cleavage Ce + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 255 min post first-cleavage + worm_development + WBls:0000366 + 255 min post first-cleavage Ce - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15244,20 +15271,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 256 min post first-cleavage - worm_development - WBls:0000367 - 256 min post first-cleavage Ce + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 256 min post first-cleavage + worm_development + WBls:0000367 + 256 min post first-cleavage Ce - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15280,20 +15307,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 257 min post first-cleavage - worm_development - WBls:0000368 - 257 min post first-cleavage Ce + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 257 min post first-cleavage + worm_development + WBls:0000368 + 257 min post first-cleavage Ce - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15316,20 +15343,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 258 min post first-cleavage - worm_development - WBls:0000369 - 258 min post first-cleavage Ce + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 258 min post first-cleavage + worm_development + WBls:0000369 + 258 min post first-cleavage Ce - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15352,20 +15379,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 259 min post first-cleavage - worm_development - WBls:0000370 - 259 min post first-cleavage Ce + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 259 min post first-cleavage + worm_development + WBls:0000370 + 259 min post first-cleavage Ce - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15388,20 +15415,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 260 min post first-cleavage - worm_development - WBls:0000371 - 260 min post first-cleavage Ce + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 260 min post first-cleavage + worm_development + WBls:0000371 + 260 min post first-cleavage Ce - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15424,20 +15451,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 261 min post first-cleavage - worm_development - WBls:0000372 - 261 min post first-cleavage Ce + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 261 min post first-cleavage + worm_development + WBls:0000372 + 261 min post first-cleavage Ce - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15460,20 +15487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 262 min post first-cleavage - worm_development - WBls:0000373 - 262 min post first-cleavage Ce + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 262 min post first-cleavage + worm_development + WBls:0000373 + 262 min post first-cleavage Ce - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15496,20 +15523,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 263 min post first-cleavage - worm_development - WBls:0000374 - 263 min post first-cleavage Ce + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 263 min post first-cleavage + worm_development + WBls:0000374 + 263 min post first-cleavage Ce - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15532,20 +15559,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 264 min post first-cleavage - worm_development - WBls:0000375 - 264 min post first-cleavage Ce + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 264 min post first-cleavage + worm_development + WBls:0000375 + 264 min post first-cleavage Ce - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15568,20 +15595,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 265 min post first-cleavage - worm_development - WBls:0000376 - 265 min post first-cleavage Ce + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 265 min post first-cleavage + worm_development + WBls:0000376 + 265 min post first-cleavage Ce - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15604,20 +15631,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 266 min post first-cleavage - worm_development - WBls:0000377 - 266 min post first-cleavage Ce + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 266 min post first-cleavage + worm_development + WBls:0000377 + 266 min post first-cleavage Ce - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15640,20 +15667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 267 min post first-cleavage - worm_development - WBls:0000378 - 267 min post first-cleavage Ce + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 267 min post first-cleavage + worm_development + WBls:0000378 + 267 min post first-cleavage Ce - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15676,20 +15703,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 268 min post first-cleavage - worm_development - WBls:0000379 - 268 min post first-cleavage Ce + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 268 min post first-cleavage + worm_development + WBls:0000379 + 268 min post first-cleavage Ce - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15712,20 +15739,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 269 min post first-cleavage - worm_development - WBls:0000380 - 269 min post first-cleavage Ce + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 269 min post first-cleavage + worm_development + WBls:0000380 + 269 min post first-cleavage Ce - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15748,20 +15775,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 270 min post first-cleavage - worm_development - WBls:0000381 - 270 min post first-cleavage Ce + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 270 min post first-cleavage + worm_development + WBls:0000381 + 270 min post first-cleavage Ce - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15784,20 +15811,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 271 min post first-cleavage - worm_development - WBls:0000382 - 271 min post first-cleavage Ce + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 271 min post first-cleavage + worm_development + WBls:0000382 + 271 min post first-cleavage Ce - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15820,20 +15847,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 272 min post first-cleavage - worm_development - WBls:0000383 - 272 min post first-cleavage Ce + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 272 min post first-cleavage + worm_development + WBls:0000383 + 272 min post first-cleavage Ce - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15856,20 +15883,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 273 min post first-cleavage - worm_development - WBls:0000384 - 273 min post first-cleavage Ce + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 273 min post first-cleavage + worm_development + WBls:0000384 + 273 min post first-cleavage Ce - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15892,20 +15919,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 274 min post first-cleavage - worm_development - WBls:0000385 - 274 min post first-cleavage Ce + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 274 min post first-cleavage + worm_development + WBls:0000385 + 274 min post first-cleavage Ce - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15928,20 +15955,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 275 min post first-cleavage - worm_development - WBls:0000386 - 275 min post first-cleavage Ce + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 275 min post first-cleavage + worm_development + WBls:0000386 + 275 min post first-cleavage Ce - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15964,20 +15991,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 276 min post first-cleavage - worm_development - WBls:0000387 - 276 min post first-cleavage Ce + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 276 min post first-cleavage + worm_development + WBls:0000387 + 276 min post first-cleavage Ce - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16000,20 +16027,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 277 min post first-cleavage - worm_development - WBls:0000388 - 277 min post first-cleavage Ce + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 277 min post first-cleavage + worm_development + WBls:0000388 + 277 min post first-cleavage Ce - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16036,20 +16063,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 278 min post first-cleavage - worm_development - WBls:0000389 - 278 min post first-cleavage Ce + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 278 min post first-cleavage + worm_development + WBls:0000389 + 278 min post first-cleavage Ce - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16072,20 +16099,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 279 min post first-cleavage - worm_development - WBls:0000390 - 279 min post first-cleavage Ce + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 279 min post first-cleavage + worm_development + WBls:0000390 + 279 min post first-cleavage Ce - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16108,20 +16135,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 280 min post first-cleavage - worm_development - WBls:0000391 - 280 min post first-cleavage Ce + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 280 min post first-cleavage + worm_development + WBls:0000391 + 280 min post first-cleavage Ce - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16144,20 +16171,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 281 min post first-cleavage - worm_development - WBls:0000392 - 281 min post first-cleavage Ce + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 281 min post first-cleavage + worm_development + WBls:0000392 + 281 min post first-cleavage Ce - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16180,20 +16207,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 282 min post first-cleavage - worm_development - WBls:0000393 - 282 min post first-cleavage Ce + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 282 min post first-cleavage + worm_development + WBls:0000393 + 282 min post first-cleavage Ce - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16216,20 +16243,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 283 min post first-cleavage - worm_development - WBls:0000394 - 283 min post first-cleavage Ce + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 283 min post first-cleavage + worm_development + WBls:0000394 + 283 min post first-cleavage Ce - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16252,20 +16279,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 284 min post first-cleavage - worm_development - WBls:0000395 - 284 min post first-cleavage Ce + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 284 min post first-cleavage + worm_development + WBls:0000395 + 284 min post first-cleavage Ce - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16288,20 +16315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 285 min post first-cleavage - worm_development - WBls:0000396 - 285 min post first-cleavage Ce + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 285 min post first-cleavage + worm_development + WBls:0000396 + 285 min post first-cleavage Ce - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16324,20 +16351,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 286 min post first-cleavage - worm_development - WBls:0000397 - 286 min post first-cleavage Ce + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 286 min post first-cleavage + worm_development + WBls:0000397 + 286 min post first-cleavage Ce - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16360,20 +16387,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 287 min post first-cleavage - worm_development - WBls:0000398 - 287 min post first-cleavage Ce + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 287 min post first-cleavage + worm_development + WBls:0000398 + 287 min post first-cleavage Ce - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16396,20 +16423,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 288 min post first-cleavage - worm_development - WBls:0000399 - 288 min post first-cleavage Ce + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 288 min post first-cleavage + worm_development + WBls:0000399 + 288 min post first-cleavage Ce - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16432,20 +16459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 289 min post first-cleavage - worm_development - WBls:0000400 - 289 min post first-cleavage Ce + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 289 min post first-cleavage + worm_development + WBls:0000400 + 289 min post first-cleavage Ce - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16468,20 +16495,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 290 min post first-cleavage - worm_development - WBls:0000401 - 290 min post first-cleavage Ce + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 290 min post first-cleavage + worm_development + WBls:0000401 + 290 min post first-cleavage Ce - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16504,20 +16531,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 291 min post first-cleavage - worm_development - WBls:0000402 - 291 min post first-cleavage Ce + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 291 min post first-cleavage + worm_development + WBls:0000402 + 291 min post first-cleavage Ce - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16540,20 +16567,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 292 min post first-cleavage - worm_development - WBls:0000403 - 292 min post first-cleavage Ce + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 292 min post first-cleavage + worm_development + WBls:0000403 + 292 min post first-cleavage Ce - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16576,20 +16603,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 293 min post first-cleavage - worm_development - WBls:0000404 - 293 min post first-cleavage Ce + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 293 min post first-cleavage + worm_development + WBls:0000404 + 293 min post first-cleavage Ce - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16612,20 +16639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 294 min post first-cleavage - worm_development - WBls:0000405 - 294 min post first-cleavage Ce + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 294 min post first-cleavage + worm_development + WBls:0000405 + 294 min post first-cleavage Ce - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16648,20 +16675,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 295 min post first-cleavage - worm_development - WBls:0000406 - 295 min post first-cleavage Ce + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 295 min post first-cleavage + worm_development + WBls:0000406 + 295 min post first-cleavage Ce - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16684,20 +16711,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 296 min post first-cleavage - worm_development - WBls:0000407 - 296 min post first-cleavage Ce + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 296 min post first-cleavage + worm_development + WBls:0000407 + 296 min post first-cleavage Ce - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16720,20 +16747,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 297 min post first-cleavage - worm_development - WBls:0000408 - 297 min post first-cleavage Ce + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 297 min post first-cleavage + worm_development + WBls:0000408 + 297 min post first-cleavage Ce - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16756,20 +16783,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 298 min post first-cleavage - worm_development - WBls:0000409 - 298 min post first-cleavage Ce + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 298 min post first-cleavage + worm_development + WBls:0000409 + 298 min post first-cleavage Ce - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16792,20 +16819,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 299 min post first-cleavage - worm_development - WBls:0000410 - 299 min post first-cleavage Ce + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 299 min post first-cleavage + worm_development + WBls:0000410 + 299 min post first-cleavage Ce - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16828,20 +16855,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 300 min post first-cleavage - worm_development - WBls:0000411 - 300 min post first-cleavage Ce + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 300 min post first-cleavage + worm_development + WBls:0000411 + 300 min post first-cleavage Ce - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16864,20 +16891,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 301 min post first-cleavage - worm_development - WBls:0000412 - 301 min post first-cleavage Ce + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 301 min post first-cleavage + worm_development + WBls:0000412 + 301 min post first-cleavage Ce - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16900,20 +16927,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 302 min post first-cleavage - worm_development - WBls:0000413 - 302 min post first-cleavage Ce + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 302 min post first-cleavage + worm_development + WBls:0000413 + 302 min post first-cleavage Ce - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16936,20 +16963,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 303 min post first-cleavage - worm_development - WBls:0000414 - 303 min post first-cleavage Ce + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 303 min post first-cleavage + worm_development + WBls:0000414 + 303 min post first-cleavage Ce - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16972,20 +16999,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 304 min post first-cleavage - worm_development - WBls:0000415 - 304 min post first-cleavage Ce + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 304 min post first-cleavage + worm_development + WBls:0000415 + 304 min post first-cleavage Ce - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17008,20 +17035,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 305 min post first-cleavage - worm_development - WBls:0000416 - 305 min post first-cleavage Ce + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 305 min post first-cleavage + worm_development + WBls:0000416 + 305 min post first-cleavage Ce - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17044,20 +17071,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 306 min post first-cleavage - worm_development - WBls:0000417 - 306 min post first-cleavage Ce + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 306 min post first-cleavage + worm_development + WBls:0000417 + 306 min post first-cleavage Ce - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17080,20 +17107,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 307 min post first-cleavage - worm_development - WBls:0000418 - 307 min post first-cleavage Ce + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 307 min post first-cleavage + worm_development + WBls:0000418 + 307 min post first-cleavage Ce - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17116,20 +17143,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 308 min post first-cleavage - worm_development - WBls:0000419 - 308 min post first-cleavage Ce + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 308 min post first-cleavage + worm_development + WBls:0000419 + 308 min post first-cleavage Ce - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17152,20 +17179,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 309 min post first-cleavage - worm_development - WBls:0000420 - 309 min post first-cleavage Ce + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 309 min post first-cleavage + worm_development + WBls:0000420 + 309 min post first-cleavage Ce - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17188,20 +17215,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 310 min post first-cleavage - worm_development - WBls:0000421 - 310 min post first-cleavage Ce + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 310 min post first-cleavage + worm_development + WBls:0000421 + 310 min post first-cleavage Ce - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17224,20 +17251,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 311 min post first-cleavage - worm_development - WBls:0000422 - 311 min post first-cleavage Ce + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 311 min post first-cleavage + worm_development + WBls:0000422 + 311 min post first-cleavage Ce - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17260,20 +17287,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 312 min post first-cleavage - worm_development - WBls:0000423 - 312 min post first-cleavage Ce + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 312 min post first-cleavage + worm_development + WBls:0000423 + 312 min post first-cleavage Ce - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17296,20 +17323,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 313 min post first-cleavage - worm_development - WBls:0000424 - 313 min post first-cleavage Ce + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 313 min post first-cleavage + worm_development + WBls:0000424 + 313 min post first-cleavage Ce - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17332,20 +17359,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 314 min post first-cleavage - worm_development - WBls:0000425 - 314 min post first-cleavage Ce + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 314 min post first-cleavage + worm_development + WBls:0000425 + 314 min post first-cleavage Ce - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17368,20 +17395,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 315 min post first-cleavage - worm_development - WBls:0000426 - 315 min post first-cleavage Ce + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 315 min post first-cleavage + worm_development + WBls:0000426 + 315 min post first-cleavage Ce - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17404,20 +17431,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 316 min post first-cleavage - worm_development - WBls:0000427 - 316 min post first-cleavage Ce + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 316 min post first-cleavage + worm_development + WBls:0000427 + 316 min post first-cleavage Ce - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17440,20 +17467,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 317 min post first-cleavage - worm_development - WBls:0000428 - 317 min post first-cleavage Ce + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 317 min post first-cleavage + worm_development + WBls:0000428 + 317 min post first-cleavage Ce - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17476,20 +17503,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 318 min post first-cleavage - worm_development - WBls:0000429 - 318 min post first-cleavage Ce + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 318 min post first-cleavage + worm_development + WBls:0000429 + 318 min post first-cleavage Ce - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17512,20 +17539,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 319 min post first-cleavage - worm_development - WBls:0000430 - 319 min post first-cleavage Ce + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 319 min post first-cleavage + worm_development + WBls:0000430 + 319 min post first-cleavage Ce - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17548,20 +17575,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 320 min post first-cleavage - worm_development - WBls:0000431 - 320 min post first-cleavage Ce + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 320 min post first-cleavage + worm_development + WBls:0000431 + 320 min post first-cleavage Ce - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17584,20 +17611,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 321 min post first-cleavage - worm_development - WBls:0000432 - 321 min post first-cleavage Ce + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 321 min post first-cleavage + worm_development + WBls:0000432 + 321 min post first-cleavage Ce - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17620,20 +17647,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 322 min post first-cleavage - worm_development - WBls:0000433 - 322 min post first-cleavage Ce + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 322 min post first-cleavage + worm_development + WBls:0000433 + 322 min post first-cleavage Ce - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17656,20 +17683,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 323 min post first-cleavage - worm_development - WBls:0000434 - 323 min post first-cleavage Ce + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 323 min post first-cleavage + worm_development + WBls:0000434 + 323 min post first-cleavage Ce - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17692,20 +17719,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 324 min post first-cleavage - worm_development - WBls:0000435 - 324 min post first-cleavage Ce + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 324 min post first-cleavage + worm_development + WBls:0000435 + 324 min post first-cleavage Ce - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17728,20 +17755,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 325 min post first-cleavage - worm_development - WBls:0000436 - 325 min post first-cleavage Ce + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 325 min post first-cleavage + worm_development + WBls:0000436 + 325 min post first-cleavage Ce - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17764,20 +17791,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 326 min post first-cleavage - worm_development - WBls:0000437 - 326 min post first-cleavage Ce + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 326 min post first-cleavage + worm_development + WBls:0000437 + 326 min post first-cleavage Ce - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17800,20 +17827,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 327 min post first-cleavage - worm_development - WBls:0000438 - 327 min post first-cleavage Ce + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 327 min post first-cleavage + worm_development + WBls:0000438 + 327 min post first-cleavage Ce - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17836,20 +17863,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 328 min post first-cleavage - worm_development - WBls:0000439 - 328 min post first-cleavage Ce + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 328 min post first-cleavage + worm_development + WBls:0000439 + 328 min post first-cleavage Ce - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17872,20 +17899,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 329 min post first-cleavage - worm_development - WBls:0000440 - 329 min post first-cleavage Ce + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 329 min post first-cleavage + worm_development + WBls:0000440 + 329 min post first-cleavage Ce - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17908,20 +17935,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 330 min post first-cleavage - worm_development - WBls:0000441 - 330 min post first-cleavage Ce + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 330 min post first-cleavage + worm_development + WBls:0000441 + 330 min post first-cleavage Ce - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17944,20 +17971,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 331 min post first-cleavage - worm_development - WBls:0000442 - 331 min post first-cleavage Ce + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 331 min post first-cleavage + worm_development + WBls:0000442 + 331 min post first-cleavage Ce - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17980,20 +18007,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 332 min post first-cleavage - worm_development - WBls:0000443 - 332 min post first-cleavage Ce + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 332 min post first-cleavage + worm_development + WBls:0000443 + 332 min post first-cleavage Ce - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18016,20 +18043,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 333 min post first-cleavage - worm_development - WBls:0000444 - 333 min post first-cleavage Ce + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 333 min post first-cleavage + worm_development + WBls:0000444 + 333 min post first-cleavage Ce - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18052,20 +18079,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 334 min post first-cleavage - worm_development - WBls:0000445 - 334 min post first-cleavage Ce + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 334 min post first-cleavage + worm_development + WBls:0000445 + 334 min post first-cleavage Ce - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18088,20 +18115,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 335 min post first-cleavage - worm_development - WBls:0000446 - 335 min post first-cleavage Ce + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 335 min post first-cleavage + worm_development + WBls:0000446 + 335 min post first-cleavage Ce - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18124,20 +18151,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 336 min post first-cleavage - worm_development - WBls:0000447 - 336 min post first-cleavage Ce + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 336 min post first-cleavage + worm_development + WBls:0000447 + 336 min post first-cleavage Ce - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18160,20 +18187,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 337 min post first-cleavage - worm_development - WBls:0000448 - 337 min post first-cleavage Ce + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 337 min post first-cleavage + worm_development + WBls:0000448 + 337 min post first-cleavage Ce - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18196,20 +18223,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 338 min post first-cleavage - worm_development - WBls:0000449 - 338 min post first-cleavage Ce + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 338 min post first-cleavage + worm_development + WBls:0000449 + 338 min post first-cleavage Ce - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18232,20 +18259,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 339 min post first-cleavage - worm_development - WBls:0000450 - 339 min post first-cleavage Ce + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 339 min post first-cleavage + worm_development + WBls:0000450 + 339 min post first-cleavage Ce - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18268,20 +18295,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 340 min post first-cleavage - worm_development - WBls:0000451 - 340 min post first-cleavage Ce + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 340 min post first-cleavage + worm_development + WBls:0000451 + 340 min post first-cleavage Ce - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18304,20 +18331,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 341 min post first-cleavage - worm_development - WBls:0000452 - 341 min post first-cleavage Ce + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 341 min post first-cleavage + worm_development + WBls:0000452 + 341 min post first-cleavage Ce - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18340,20 +18367,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 342 min post first-cleavage - worm_development - WBls:0000453 - 342 min post first-cleavage Ce + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 342 min post first-cleavage + worm_development + WBls:0000453 + 342 min post first-cleavage Ce - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18376,20 +18403,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 343 min post first-cleavage - worm_development - WBls:0000454 - 343 min post first-cleavage Ce + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 343 min post first-cleavage + worm_development + WBls:0000454 + 343 min post first-cleavage Ce - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18412,20 +18439,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 344 min post first-cleavage - worm_development - WBls:0000455 - 344 min post first-cleavage Ce + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 344 min post first-cleavage + worm_development + WBls:0000455 + 344 min post first-cleavage Ce - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18448,20 +18475,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 345 min post first-cleavage - worm_development - WBls:0000456 - 345 min post first-cleavage Ce + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 345 min post first-cleavage + worm_development + WBls:0000456 + 345 min post first-cleavage Ce - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18484,20 +18511,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 346 min post first-cleavage - worm_development - WBls:0000457 - 346 min post first-cleavage Ce + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 346 min post first-cleavage + worm_development + WBls:0000457 + 346 min post first-cleavage Ce - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18520,20 +18547,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 347 min post first-cleavage - worm_development - WBls:0000458 - 347 min post first-cleavage Ce + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 347 min post first-cleavage + worm_development + WBls:0000458 + 347 min post first-cleavage Ce - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18556,20 +18583,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 348 min post first-cleavage - worm_development - WBls:0000459 - 348 min post first-cleavage Ce + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 348 min post first-cleavage + worm_development + WBls:0000459 + 348 min post first-cleavage Ce - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18592,20 +18619,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 349 min post first-cleavage - worm_development - WBls:0000460 - 349 min post first-cleavage Ce + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 349 min post first-cleavage + worm_development + WBls:0000460 + 349 min post first-cleavage Ce - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18628,20 +18655,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 350 min post first-cleavage - worm_development - WBls:0000461 - 350 min post first-cleavage Ce + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 350 min post first-cleavage + worm_development + WBls:0000461 + 350 min post first-cleavage Ce - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18664,20 +18691,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 351 min post first-cleavage - worm_development - WBls:0000462 - 351 min post first-cleavage Ce + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 351 min post first-cleavage + worm_development + WBls:0000462 + 351 min post first-cleavage Ce - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18700,20 +18727,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 352 min post first-cleavage - worm_development - WBls:0000463 - 352 min post first-cleavage Ce + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 352 min post first-cleavage + worm_development + WBls:0000463 + 352 min post first-cleavage Ce - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18736,20 +18763,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 353 min post first-cleavage - worm_development - WBls:0000464 - 353 min post first-cleavage Ce + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 353 min post first-cleavage + worm_development + WBls:0000464 + 353 min post first-cleavage Ce - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18772,20 +18799,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 354 min post first-cleavage - worm_development - WBls:0000465 - 354 min post first-cleavage Ce + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 354 min post first-cleavage + worm_development + WBls:0000465 + 354 min post first-cleavage Ce - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18808,20 +18835,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 355 min post first-cleavage - worm_development - WBls:0000466 - 355 min post first-cleavage Ce + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 355 min post first-cleavage + worm_development + WBls:0000466 + 355 min post first-cleavage Ce - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18844,20 +18871,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 356 min post first-cleavage - worm_development - WBls:0000467 - 356 min post first-cleavage Ce + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 356 min post first-cleavage + worm_development + WBls:0000467 + 356 min post first-cleavage Ce - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18880,20 +18907,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 357 min post first-cleavage - worm_development - WBls:0000468 - 357 min post first-cleavage Ce + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 357 min post first-cleavage + worm_development + WBls:0000468 + 357 min post first-cleavage Ce - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18916,20 +18943,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 358 min post first-cleavage - worm_development - WBls:0000469 - 358 min post first-cleavage Ce + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 358 min post first-cleavage + worm_development + WBls:0000469 + 358 min post first-cleavage Ce - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18952,20 +18979,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 359 min post first-cleavage - worm_development - WBls:0000470 - 359 min post first-cleavage Ce + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 359 min post first-cleavage + worm_development + WBls:0000470 + 359 min post first-cleavage Ce - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18988,20 +19015,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 360 min post first-cleavage - worm_development - WBls:0000471 - 360 min post first-cleavage Ce + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 360 min post first-cleavage + worm_development + WBls:0000471 + 360 min post first-cleavage Ce - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19024,20 +19051,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 361 min post first-cleavage - worm_development - WBls:0000472 - 361 min post first-cleavage Ce + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 361 min post first-cleavage + worm_development + WBls:0000472 + 361 min post first-cleavage Ce - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19060,20 +19087,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 362 min post first-cleavage - worm_development - WBls:0000473 - 362 min post first-cleavage Ce + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 362 min post first-cleavage + worm_development + WBls:0000473 + 362 min post first-cleavage Ce - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19096,20 +19123,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 363 min post first-cleavage - worm_development - WBls:0000474 - 363 min post first-cleavage Ce + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 363 min post first-cleavage + worm_development + WBls:0000474 + 363 min post first-cleavage Ce - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19132,20 +19159,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 364 min post first-cleavage - worm_development - WBls:0000475 - 364 min post first-cleavage Ce + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 364 min post first-cleavage + worm_development + WBls:0000475 + 364 min post first-cleavage Ce - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19168,20 +19195,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 365 min post first-cleavage - worm_development - WBls:0000476 - 365 min post first-cleavage Ce + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 365 min post first-cleavage + worm_development + WBls:0000476 + 365 min post first-cleavage Ce - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19204,20 +19231,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 366 min post first-cleavage - worm_development - WBls:0000477 - 366 min post first-cleavage Ce + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 366 min post first-cleavage + worm_development + WBls:0000477 + 366 min post first-cleavage Ce - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19240,20 +19267,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 367 min post first-cleavage - worm_development - WBls:0000478 - 367 min post first-cleavage Ce + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 367 min post first-cleavage + worm_development + WBls:0000478 + 367 min post first-cleavage Ce - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19276,20 +19303,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 368 min post first-cleavage - worm_development - WBls:0000479 - 368 min post first-cleavage Ce + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 368 min post first-cleavage + worm_development + WBls:0000479 + 368 min post first-cleavage Ce - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19312,20 +19339,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 369 min post first-cleavage - worm_development - WBls:0000480 - 369 min post first-cleavage Ce + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 369 min post first-cleavage + worm_development + WBls:0000480 + 369 min post first-cleavage Ce - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19348,20 +19375,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 370 min post first-cleavage - worm_development - WBls:0000481 - 370 min post first-cleavage Ce + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 370 min post first-cleavage + worm_development + WBls:0000481 + 370 min post first-cleavage Ce - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19384,20 +19411,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 371 min post first-cleavage - worm_development - WBls:0000482 - 371 min post first-cleavage Ce + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 371 min post first-cleavage + worm_development + WBls:0000482 + 371 min post first-cleavage Ce - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19420,20 +19447,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 372 min post first-cleavage - worm_development - WBls:0000483 - 372 min post first-cleavage Ce + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 372 min post first-cleavage + worm_development + WBls:0000483 + 372 min post first-cleavage Ce - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19456,20 +19483,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 373 min post first-cleavage - worm_development - WBls:0000484 - 373 min post first-cleavage Ce + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 373 min post first-cleavage + worm_development + WBls:0000484 + 373 min post first-cleavage Ce - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19492,20 +19519,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 374 min post first-cleavage - worm_development - WBls:0000485 - 374 min post first-cleavage Ce + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 374 min post first-cleavage + worm_development + WBls:0000485 + 374 min post first-cleavage Ce - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19528,20 +19555,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 375 min post first-cleavage - worm_development - WBls:0000486 - 375 min post first-cleavage Ce + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 375 min post first-cleavage + worm_development + WBls:0000486 + 375 min post first-cleavage Ce - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19564,20 +19591,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 376 min post first-cleavage - worm_development - WBls:0000487 - 376 min post first-cleavage Ce + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 376 min post first-cleavage + worm_development + WBls:0000487 + 376 min post first-cleavage Ce - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19600,20 +19627,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 377 min post first-cleavage - worm_development - WBls:0000488 - 377 min post first-cleavage Ce + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 377 min post first-cleavage + worm_development + WBls:0000488 + 377 min post first-cleavage Ce - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19636,20 +19663,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 378 min post first-cleavage - worm_development - WBls:0000489 - 378 min post first-cleavage Ce + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 378 min post first-cleavage + worm_development + WBls:0000489 + 378 min post first-cleavage Ce - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19672,20 +19699,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 379 min post first-cleavage - worm_development - WBls:0000490 - 379 min post first-cleavage Ce + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 379 min post first-cleavage + worm_development + WBls:0000490 + 379 min post first-cleavage Ce - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19708,20 +19735,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 380 min post first-cleavage - worm_development - WBls:0000491 - 380 min post first-cleavage Ce + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 380 min post first-cleavage + worm_development + WBls:0000491 + 380 min post first-cleavage Ce - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19744,20 +19771,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 381 min post first-cleavage - worm_development - WBls:0000492 - 381 min post first-cleavage Ce + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 381 min post first-cleavage + worm_development + WBls:0000492 + 381 min post first-cleavage Ce - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19780,20 +19807,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 382 min post first-cleavage - worm_development - WBls:0000493 - 382 min post first-cleavage Ce + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 382 min post first-cleavage + worm_development + WBls:0000493 + 382 min post first-cleavage Ce - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19816,20 +19843,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 383 min post first-cleavage - worm_development - WBls:0000494 - 383 min post first-cleavage Ce + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 383 min post first-cleavage + worm_development + WBls:0000494 + 383 min post first-cleavage Ce - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19852,20 +19879,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 384 min post first-cleavage - worm_development - WBls:0000495 - 384 min post first-cleavage Ce + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 384 min post first-cleavage + worm_development + WBls:0000495 + 384 min post first-cleavage Ce - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19888,20 +19915,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 385 min post first-cleavage - worm_development - WBls:0000496 - 385 min post first-cleavage Ce + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 385 min post first-cleavage + worm_development + WBls:0000496 + 385 min post first-cleavage Ce - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19924,20 +19951,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 386 min post first-cleavage - worm_development - WBls:0000497 - 386 min post first-cleavage Ce + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 386 min post first-cleavage + worm_development + WBls:0000497 + 386 min post first-cleavage Ce - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19960,20 +19987,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 387 min post first-cleavage - worm_development - WBls:0000498 - 387 min post first-cleavage Ce + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 387 min post first-cleavage + worm_development + WBls:0000498 + 387 min post first-cleavage Ce - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19996,20 +20023,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 388 min post first-cleavage - worm_development - WBls:0000499 - 388 min post first-cleavage Ce + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 388 min post first-cleavage + worm_development + WBls:0000499 + 388 min post first-cleavage Ce - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20032,20 +20059,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 389 min post first-cleavage - worm_development - WBls:0000500 - 389 min post first-cleavage Ce + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 389 min post first-cleavage + worm_development + WBls:0000500 + 389 min post first-cleavage Ce - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20068,20 +20095,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 390 min post first-cleavage - worm_development - WBls:0000501 - 390 min post first-cleavage Ce + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 390 min post first-cleavage + worm_development + WBls:0000501 + 390 min post first-cleavage Ce - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20104,20 +20131,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 391 min post first-cleavage - worm_development - WBls:0000502 - 391 min post first-cleavage Ce + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 391 min post first-cleavage + worm_development + WBls:0000502 + 391 min post first-cleavage Ce - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20140,20 +20167,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 392 min post first-cleavage - worm_development - WBls:0000503 - 392 min post first-cleavage Ce + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 392 min post first-cleavage + worm_development + WBls:0000503 + 392 min post first-cleavage Ce - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20176,20 +20203,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 393 min post first-cleavage - worm_development - WBls:0000504 - 393 min post first-cleavage Ce + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 393 min post first-cleavage + worm_development + WBls:0000504 + 393 min post first-cleavage Ce - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20212,20 +20239,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 394 min post first-cleavage - worm_development - WBls:0000505 - 394 min post first-cleavage Ce + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 394 min post first-cleavage + worm_development + WBls:0000505 + 394 min post first-cleavage Ce - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20248,20 +20275,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 395 min post first-cleavage - worm_development - WBls:0000506 - 395 min post first-cleavage Ce + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 395 min post first-cleavage + worm_development + WBls:0000506 + 395 min post first-cleavage Ce - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20284,20 +20311,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 396 min post first-cleavage - worm_development - WBls:0000507 - 396 min post first-cleavage Ce + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 396 min post first-cleavage + worm_development + WBls:0000507 + 396 min post first-cleavage Ce - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20320,20 +20347,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 397 min post first-cleavage - worm_development - WBls:0000508 - 397 min post first-cleavage Ce + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 397 min post first-cleavage + worm_development + WBls:0000508 + 397 min post first-cleavage Ce - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20356,20 +20383,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 398 min post first-cleavage - worm_development - WBls:0000509 - 398 min post first-cleavage Ce + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 398 min post first-cleavage + worm_development + WBls:0000509 + 398 min post first-cleavage Ce - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20392,20 +20419,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 399 min post first-cleavage - worm_development - WBls:0000510 - 399 min post first-cleavage Ce + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 399 min post first-cleavage + worm_development + WBls:0000510 + 399 min post first-cleavage Ce - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20428,20 +20455,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 400 min post first-cleavage - worm_development - WBls:0000511 - 400 min post first-cleavage Ce + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 400 min post first-cleavage + worm_development + WBls:0000511 + 400 min post first-cleavage Ce - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20464,20 +20491,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 401 min post first-cleavage - worm_development - WBls:0000512 - 401 min post first-cleavage Ce + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 401 min post first-cleavage + worm_development + WBls:0000512 + 401 min post first-cleavage Ce - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20500,20 +20527,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 402 min post first-cleavage - worm_development - WBls:0000513 - 402 min post first-cleavage Ce + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 402 min post first-cleavage + worm_development + WBls:0000513 + 402 min post first-cleavage Ce - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20536,20 +20563,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 403 min post first-cleavage - worm_development - WBls:0000514 - 403 min post first-cleavage Ce + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 403 min post first-cleavage + worm_development + WBls:0000514 + 403 min post first-cleavage Ce - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20572,20 +20599,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 404 min post first-cleavage - worm_development - WBls:0000515 - 404 min post first-cleavage Ce + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 404 min post first-cleavage + worm_development + WBls:0000515 + 404 min post first-cleavage Ce - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20608,20 +20635,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 405 min post first-cleavage - worm_development - WBls:0000516 - 405 min post first-cleavage Ce + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 405 min post first-cleavage + worm_development + WBls:0000516 + 405 min post first-cleavage Ce - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20644,20 +20671,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 406 min post first-cleavage - worm_development - WBls:0000517 - 406 min post first-cleavage Ce + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 406 min post first-cleavage + worm_development + WBls:0000517 + 406 min post first-cleavage Ce - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20680,20 +20707,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 407 min post first-cleavage - worm_development - WBls:0000518 - 407 min post first-cleavage Ce + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 407 min post first-cleavage + worm_development + WBls:0000518 + 407 min post first-cleavage Ce - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20716,20 +20743,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 408 min post first-cleavage - worm_development - WBls:0000519 - 408 min post first-cleavage Ce + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 408 min post first-cleavage + worm_development + WBls:0000519 + 408 min post first-cleavage Ce - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20752,20 +20779,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 409 min post first-cleavage - worm_development - WBls:0000520 - 409 min post first-cleavage Ce + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 409 min post first-cleavage + worm_development + WBls:0000520 + 409 min post first-cleavage Ce - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20788,20 +20815,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 410 min post first-cleavage - worm_development - WBls:0000521 - 410 min post first-cleavage Ce + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 410 min post first-cleavage + worm_development + WBls:0000521 + 410 min post first-cleavage Ce - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20824,20 +20851,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 411 min post first-cleavage - worm_development - WBls:0000522 - 411 min post first-cleavage Ce + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 411 min post first-cleavage + worm_development + WBls:0000522 + 411 min post first-cleavage Ce - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20860,20 +20887,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 412 min post first-cleavage - worm_development - WBls:0000523 - 412 min post first-cleavage Ce + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 412 min post first-cleavage + worm_development + WBls:0000523 + 412 min post first-cleavage Ce - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20896,20 +20923,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 413 min post first-cleavage - worm_development - WBls:0000524 - 413 min post first-cleavage Ce + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 413 min post first-cleavage + worm_development + WBls:0000524 + 413 min post first-cleavage Ce - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20932,20 +20959,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 414 min post first-cleavage - worm_development - WBls:0000525 - 414 min post first-cleavage Ce + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 414 min post first-cleavage + worm_development + WBls:0000525 + 414 min post first-cleavage Ce - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20968,20 +20995,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 415 min post first-cleavage - worm_development - WBls:0000526 - 415 min post first-cleavage Ce + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 415 min post first-cleavage + worm_development + WBls:0000526 + 415 min post first-cleavage Ce - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21004,20 +21031,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 416 min post first-cleavage - worm_development - WBls:0000527 - 416 min post first-cleavage Ce + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 416 min post first-cleavage + worm_development + WBls:0000527 + 416 min post first-cleavage Ce - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21040,20 +21067,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 417 min post first-cleavage - worm_development - WBls:0000528 - 417 min post first-cleavage Ce + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 417 min post first-cleavage + worm_development + WBls:0000528 + 417 min post first-cleavage Ce - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21076,20 +21103,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 418 min post first-cleavage - worm_development - WBls:0000529 - 418 min post first-cleavage Ce + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 418 min post first-cleavage + worm_development + WBls:0000529 + 418 min post first-cleavage Ce - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21112,20 +21139,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 419 min post first-cleavage - worm_development - WBls:0000530 - 419 min post first-cleavage Ce + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 419 min post first-cleavage + worm_development + WBls:0000530 + 419 min post first-cleavage Ce - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21148,20 +21175,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 420 min post first-cleavage - worm_development - WBls:0000531 - 420 min post first-cleavage Ce + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 420 min post first-cleavage + worm_development + WBls:0000531 + 420 min post first-cleavage Ce - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21184,20 +21211,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 421 min post first-cleavage - worm_development - WBls:0000532 - 421 min post first-cleavage Ce + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 421 min post first-cleavage + worm_development + WBls:0000532 + 421 min post first-cleavage Ce - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21220,20 +21247,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 422 min post first-cleavage - worm_development - WBls:0000533 - 422 min post first-cleavage Ce + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 422 min post first-cleavage + worm_development + WBls:0000533 + 422 min post first-cleavage Ce - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21256,20 +21283,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 423 min post first-cleavage - worm_development - WBls:0000534 - 423 min post first-cleavage Ce + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 423 min post first-cleavage + worm_development + WBls:0000534 + 423 min post first-cleavage Ce - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21292,20 +21319,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 424 min post first-cleavage - worm_development - WBls:0000535 - 424 min post first-cleavage Ce + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 424 min post first-cleavage + worm_development + WBls:0000535 + 424 min post first-cleavage Ce - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21328,20 +21355,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 425 min post first-cleavage - worm_development - WBls:0000536 - 425 min post first-cleavage Ce + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 425 min post first-cleavage + worm_development + WBls:0000536 + 425 min post first-cleavage Ce - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21364,20 +21391,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 426 min post first-cleavage - worm_development - WBls:0000537 - 426 min post first-cleavage Ce + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 426 min post first-cleavage + worm_development + WBls:0000537 + 426 min post first-cleavage Ce - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21400,20 +21427,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 427 min post first-cleavage - worm_development - WBls:0000538 - 427 min post first-cleavage Ce + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 427 min post first-cleavage + worm_development + WBls:0000538 + 427 min post first-cleavage Ce - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21436,20 +21463,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 428 min post first-cleavage - worm_development - WBls:0000539 - 428 min post first-cleavage Ce + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 428 min post first-cleavage + worm_development + WBls:0000539 + 428 min post first-cleavage Ce - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21472,20 +21499,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 429 min post first-cleavage - worm_development - WBls:0000540 - 429 min post first-cleavage Ce + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 429 min post first-cleavage + worm_development + WBls:0000540 + 429 min post first-cleavage Ce - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21508,20 +21535,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 430 min post first-cleavage - worm_development - WBls:0000541 - 430 min post first-cleavage Ce + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 430 min post first-cleavage + worm_development + WBls:0000541 + 430 min post first-cleavage Ce - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21544,20 +21571,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 431 min post first-cleavage - worm_development - WBls:0000542 - 431 min post first-cleavage Ce + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 431 min post first-cleavage + worm_development + WBls:0000542 + 431 min post first-cleavage Ce - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21580,20 +21607,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 432 min post first-cleavage - worm_development - WBls:0000543 - 432 min post first-cleavage Ce + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 432 min post first-cleavage + worm_development + WBls:0000543 + 432 min post first-cleavage Ce - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21616,20 +21643,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 433 min post first-cleavage - worm_development - WBls:0000544 - 433 min post first-cleavage Ce + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 433 min post first-cleavage + worm_development + WBls:0000544 + 433 min post first-cleavage Ce - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21652,20 +21679,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 434 min post first-cleavage - worm_development - WBls:0000545 - 434 min post first-cleavage Ce + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 434 min post first-cleavage + worm_development + WBls:0000545 + 434 min post first-cleavage Ce - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21688,20 +21715,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 435 min post first-cleavage - worm_development - WBls:0000546 - 435 min post first-cleavage Ce + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 435 min post first-cleavage + worm_development + WBls:0000546 + 435 min post first-cleavage Ce - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21724,20 +21751,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 436 min post first-cleavage - worm_development - WBls:0000547 - 436 min post first-cleavage Ce + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 436 min post first-cleavage + worm_development + WBls:0000547 + 436 min post first-cleavage Ce - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21760,20 +21787,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 437 min post first-cleavage - worm_development - WBls:0000548 - 437 min post first-cleavage Ce + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 437 min post first-cleavage + worm_development + WBls:0000548 + 437 min post first-cleavage Ce - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21796,20 +21823,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 438 min post first-cleavage - worm_development - WBls:0000549 - 438 min post first-cleavage Ce + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 438 min post first-cleavage + worm_development + WBls:0000549 + 438 min post first-cleavage Ce - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21832,20 +21859,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 439 min post first-cleavage - worm_development - WBls:0000550 - 439 min post first-cleavage Ce + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 439 min post first-cleavage + worm_development + WBls:0000550 + 439 min post first-cleavage Ce - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21868,20 +21895,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 440 min post first-cleavage - worm_development - WBls:0000551 - 440 min post first-cleavage Ce + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 440 min post first-cleavage + worm_development + WBls:0000551 + 440 min post first-cleavage Ce - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21904,20 +21931,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 441 min post first-cleavage - worm_development - WBls:0000552 - 441 min post first-cleavage Ce + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 441 min post first-cleavage + worm_development + WBls:0000552 + 441 min post first-cleavage Ce - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21940,20 +21967,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 442 min post first-cleavage - worm_development - WBls:0000553 - 442 min post first-cleavage Ce + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 442 min post first-cleavage + worm_development + WBls:0000553 + 442 min post first-cleavage Ce - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21976,20 +22003,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 443 min post first-cleavage - worm_development - WBls:0000554 - 443 min post first-cleavage Ce + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 443 min post first-cleavage + worm_development + WBls:0000554 + 443 min post first-cleavage Ce - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22012,20 +22039,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 444 min post first-cleavage - worm_development - WBls:0000555 - 444 min post first-cleavage Ce + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 444 min post first-cleavage + worm_development + WBls:0000555 + 444 min post first-cleavage Ce - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22048,20 +22075,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 445 min post first-cleavage - worm_development - WBls:0000556 - 445 min post first-cleavage Ce + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 445 min post first-cleavage + worm_development + WBls:0000556 + 445 min post first-cleavage Ce - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22084,20 +22111,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 446 min post first-cleavage - worm_development - WBls:0000557 - 446 min post first-cleavage Ce + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 446 min post first-cleavage + worm_development + WBls:0000557 + 446 min post first-cleavage Ce - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22120,20 +22147,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 447 min post first-cleavage - worm_development - WBls:0000558 - 447 min post first-cleavage Ce + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 447 min post first-cleavage + worm_development + WBls:0000558 + 447 min post first-cleavage Ce - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22156,20 +22183,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 448 min post first-cleavage - worm_development - WBls:0000559 - 448 min post first-cleavage Ce + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 448 min post first-cleavage + worm_development + WBls:0000559 + 448 min post first-cleavage Ce - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22192,20 +22219,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 449 min post first-cleavage - worm_development - WBls:0000560 - 449 min post first-cleavage Ce + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 449 min post first-cleavage + worm_development + WBls:0000560 + 449 min post first-cleavage Ce - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22228,20 +22255,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 450 min post first-cleavage - worm_development - WBls:0000561 - 450 min post first-cleavage Ce + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 450 min post first-cleavage + worm_development + WBls:0000561 + 450 min post first-cleavage Ce - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22264,20 +22291,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 451 min post first-cleavage - worm_development - WBls:0000562 - 451 min post first-cleavage Ce + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 451 min post first-cleavage + worm_development + WBls:0000562 + 451 min post first-cleavage Ce - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22300,20 +22327,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 452 min post first-cleavage - worm_development - WBls:0000563 - 452 min post first-cleavage Ce + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 452 min post first-cleavage + worm_development + WBls:0000563 + 452 min post first-cleavage Ce - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22336,20 +22363,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 453 min post first-cleavage - worm_development - WBls:0000564 - 453 min post first-cleavage Ce + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 453 min post first-cleavage + worm_development + WBls:0000564 + 453 min post first-cleavage Ce - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22372,20 +22399,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 454 min post first-cleavage - worm_development - WBls:0000565 - 454 min post first-cleavage Ce + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 454 min post first-cleavage + worm_development + WBls:0000565 + 454 min post first-cleavage Ce - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22408,20 +22435,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 455 min post first-cleavage - worm_development - WBls:0000566 - 455 min post first-cleavage Ce + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 455 min post first-cleavage + worm_development + WBls:0000566 + 455 min post first-cleavage Ce - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22444,20 +22471,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 456 min post first-cleavage - worm_development - WBls:0000567 - 456 min post first-cleavage Ce + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 456 min post first-cleavage + worm_development + WBls:0000567 + 456 min post first-cleavage Ce - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22480,20 +22507,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 457 min post first-cleavage - worm_development - WBls:0000568 - 457 min post first-cleavage Ce + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 457 min post first-cleavage + worm_development + WBls:0000568 + 457 min post first-cleavage Ce - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22516,20 +22543,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 458 min post first-cleavage - worm_development - WBls:0000569 - 458 min post first-cleavage Ce + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 458 min post first-cleavage + worm_development + WBls:0000569 + 458 min post first-cleavage Ce - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22552,20 +22579,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 459 min post first-cleavage - worm_development - WBls:0000570 - 459 min post first-cleavage Ce + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 459 min post first-cleavage + worm_development + WBls:0000570 + 459 min post first-cleavage Ce - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22588,20 +22615,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 460 min post first-cleavage - worm_development - WBls:0000571 - 460 min post first-cleavage Ce + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 460 min post first-cleavage + worm_development + WBls:0000571 + 460 min post first-cleavage Ce - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22624,20 +22651,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 461 min post first-cleavage - worm_development - WBls:0000572 - 461 min post first-cleavage Ce + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 461 min post first-cleavage + worm_development + WBls:0000572 + 461 min post first-cleavage Ce - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22660,20 +22687,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 462 min post first-cleavage - worm_development - WBls:0000573 - 462 min post first-cleavage Ce + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 462 min post first-cleavage + worm_development + WBls:0000573 + 462 min post first-cleavage Ce - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22696,20 +22723,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 463 min post first-cleavage - worm_development - WBls:0000574 - 463 min post first-cleavage Ce + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 463 min post first-cleavage + worm_development + WBls:0000574 + 463 min post first-cleavage Ce - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22732,20 +22759,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 464 min post first-cleavage - worm_development - WBls:0000575 - 464 min post first-cleavage Ce + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 464 min post first-cleavage + worm_development + WBls:0000575 + 464 min post first-cleavage Ce - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22768,20 +22795,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 465 min post first-cleavage - worm_development - WBls:0000576 - 465 min post first-cleavage Ce + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 465 min post first-cleavage + worm_development + WBls:0000576 + 465 min post first-cleavage Ce - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22804,20 +22831,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 466 min post first-cleavage - worm_development - WBls:0000577 - 466 min post first-cleavage Ce + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 466 min post first-cleavage + worm_development + WBls:0000577 + 466 min post first-cleavage Ce - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22840,20 +22867,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 467 min post first-cleavage - worm_development - WBls:0000578 - 467 min post first-cleavage Ce + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 467 min post first-cleavage + worm_development + WBls:0000578 + 467 min post first-cleavage Ce - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22876,20 +22903,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 468 min post first-cleavage - worm_development - WBls:0000579 - 468 min post first-cleavage Ce + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 468 min post first-cleavage + worm_development + WBls:0000579 + 468 min post first-cleavage Ce - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22912,20 +22939,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 469 min post first-cleavage - worm_development - WBls:0000580 - 469 min post first-cleavage Ce + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 469 min post first-cleavage + worm_development + WBls:0000580 + 469 min post first-cleavage Ce - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22948,20 +22975,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 470 min post first-cleavage - worm_development - WBls:0000581 - 470 min post first-cleavage Ce + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 470 min post first-cleavage + worm_development + WBls:0000581 + 470 min post first-cleavage Ce - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22984,20 +23011,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 471 min post first-cleavage - worm_development - WBls:0000582 - 471 min post first-cleavage Ce + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 471 min post first-cleavage + worm_development + WBls:0000582 + 471 min post first-cleavage Ce - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23020,20 +23047,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 472 min post first-cleavage - worm_development - WBls:0000583 - 472 min post first-cleavage Ce + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 472 min post first-cleavage + worm_development + WBls:0000583 + 472 min post first-cleavage Ce - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23056,20 +23083,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 473 min post first-cleavage - worm_development - WBls:0000584 - 473 min post first-cleavage Ce + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 473 min post first-cleavage + worm_development + WBls:0000584 + 473 min post first-cleavage Ce - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23092,20 +23119,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 474 min post first-cleavage - worm_development - WBls:0000585 - 474 min post first-cleavage Ce + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 474 min post first-cleavage + worm_development + WBls:0000585 + 474 min post first-cleavage Ce - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23128,20 +23155,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 475 min post first-cleavage - worm_development - WBls:0000586 - 475 min post first-cleavage Ce + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 475 min post first-cleavage + worm_development + WBls:0000586 + 475 min post first-cleavage Ce - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23164,20 +23191,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 476 min post first-cleavage - worm_development - WBls:0000587 - 476 min post first-cleavage Ce + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 476 min post first-cleavage + worm_development + WBls:0000587 + 476 min post first-cleavage Ce - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23200,20 +23227,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 477 min post first-cleavage - worm_development - WBls:0000588 - 477 min post first-cleavage Ce + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 477 min post first-cleavage + worm_development + WBls:0000588 + 477 min post first-cleavage Ce - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23236,20 +23263,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 478 min post first-cleavage - worm_development - WBls:0000589 - 478 min post first-cleavage Ce + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 478 min post first-cleavage + worm_development + WBls:0000589 + 478 min post first-cleavage Ce - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23272,20 +23299,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 479 min post first-cleavage - worm_development - WBls:0000590 - 479 min post first-cleavage Ce + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 479 min post first-cleavage + worm_development + WBls:0000590 + 479 min post first-cleavage Ce - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23308,20 +23335,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 480 min post first-cleavage - worm_development - WBls:0000591 - 480 min post first-cleavage Ce + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 480 min post first-cleavage + worm_development + WBls:0000591 + 480 min post first-cleavage Ce - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23344,20 +23371,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 481 min post first-cleavage - worm_development - WBls:0000592 - 481 min post first-cleavage Ce + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 481 min post first-cleavage + worm_development + WBls:0000592 + 481 min post first-cleavage Ce - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23380,20 +23407,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 482 min post first-cleavage - worm_development - WBls:0000593 - 482 min post first-cleavage Ce + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 482 min post first-cleavage + worm_development + WBls:0000593 + 482 min post first-cleavage Ce - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23416,20 +23443,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 483 min post first-cleavage - worm_development - WBls:0000594 - 483 min post first-cleavage Ce + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 483 min post first-cleavage + worm_development + WBls:0000594 + 483 min post first-cleavage Ce - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23452,20 +23479,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 484 min post first-cleavage - worm_development - WBls:0000595 - 484 min post first-cleavage Ce + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 484 min post first-cleavage + worm_development + WBls:0000595 + 484 min post first-cleavage Ce - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23488,20 +23515,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 485 min post first-cleavage - worm_development - WBls:0000596 - 485 min post first-cleavage Ce + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 485 min post first-cleavage + worm_development + WBls:0000596 + 485 min post first-cleavage Ce - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23524,20 +23551,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 486 min post first-cleavage - worm_development - WBls:0000597 - 486 min post first-cleavage Ce + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 486 min post first-cleavage + worm_development + WBls:0000597 + 486 min post first-cleavage Ce - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23560,20 +23587,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 487 min post first-cleavage - worm_development - WBls:0000598 - 487 min post first-cleavage Ce + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 487 min post first-cleavage + worm_development + WBls:0000598 + 487 min post first-cleavage Ce - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23596,20 +23623,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 488 min post first-cleavage - worm_development - WBls:0000599 - 488 min post first-cleavage Ce + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 488 min post first-cleavage + worm_development + WBls:0000599 + 488 min post first-cleavage Ce - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23632,20 +23659,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 489 min post first-cleavage - worm_development - WBls:0000600 - 489 min post first-cleavage Ce + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 489 min post first-cleavage + worm_development + WBls:0000600 + 489 min post first-cleavage Ce - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23668,20 +23695,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 490 min post first-cleavage - worm_development - WBls:0000601 - 490 min post first-cleavage Ce + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 490 min post first-cleavage + worm_development + WBls:0000601 + 490 min post first-cleavage Ce - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23704,20 +23731,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 491 min post first-cleavage - worm_development - WBls:0000602 - 491 min post first-cleavage Ce + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 491 min post first-cleavage + worm_development + WBls:0000602 + 491 min post first-cleavage Ce - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23740,20 +23767,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 492 min post first-cleavage - worm_development - WBls:0000603 - 492 min post first-cleavage Ce + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 492 min post first-cleavage + worm_development + WBls:0000603 + 492 min post first-cleavage Ce - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23776,20 +23803,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 493 min post first-cleavage - worm_development - WBls:0000604 - 493 min post first-cleavage Ce + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 493 min post first-cleavage + worm_development + WBls:0000604 + 493 min post first-cleavage Ce - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23812,20 +23839,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 494 min post first-cleavage - worm_development - WBls:0000605 - 494 min post first-cleavage Ce + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 494 min post first-cleavage + worm_development + WBls:0000605 + 494 min post first-cleavage Ce - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23848,20 +23875,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 495 min post first-cleavage - worm_development - WBls:0000606 - 495 min post first-cleavage Ce + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 495 min post first-cleavage + worm_development + WBls:0000606 + 495 min post first-cleavage Ce - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23884,20 +23911,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 496 min post first-cleavage - worm_development - WBls:0000607 - 496 min post first-cleavage Ce + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 496 min post first-cleavage + worm_development + WBls:0000607 + 496 min post first-cleavage Ce - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23920,20 +23947,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 497 min post first-cleavage - worm_development - WBls:0000608 - 497 min post first-cleavage Ce + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 497 min post first-cleavage + worm_development + WBls:0000608 + 497 min post first-cleavage Ce - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23956,20 +23983,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 498 min post first-cleavage - worm_development - WBls:0000609 - 498 min post first-cleavage Ce + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 498 min post first-cleavage + worm_development + WBls:0000609 + 498 min post first-cleavage Ce - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23992,20 +24019,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 499 min post first-cleavage - worm_development - WBls:0000610 - 499 min post first-cleavage Ce + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 499 min post first-cleavage + worm_development + WBls:0000610 + 499 min post first-cleavage Ce - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24028,20 +24055,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 500 min post first-cleavage - worm_development - WBls:0000611 - 500 min post first-cleavage Ce + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 500 min post first-cleavage + worm_development + WBls:0000611 + 500 min post first-cleavage Ce - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24064,20 +24091,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 501 min post first-cleavage - worm_development - WBls:0000612 - 501 min post first-cleavage Ce + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 501 min post first-cleavage + worm_development + WBls:0000612 + 501 min post first-cleavage Ce - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24100,20 +24127,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 502 min post first-cleavage - worm_development - WBls:0000613 - 502 min post first-cleavage Ce + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 502 min post first-cleavage + worm_development + WBls:0000613 + 502 min post first-cleavage Ce - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24136,20 +24163,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 503 min post first-cleavage - worm_development - WBls:0000614 - 503 min post first-cleavage Ce + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 503 min post first-cleavage + worm_development + WBls:0000614 + 503 min post first-cleavage Ce - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24172,20 +24199,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 504 min post first-cleavage - worm_development - WBls:0000615 - 504 min post first-cleavage Ce + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 504 min post first-cleavage + worm_development + WBls:0000615 + 504 min post first-cleavage Ce - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24208,20 +24235,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 505 min post first-cleavage - worm_development - WBls:0000616 - 505 min post first-cleavage Ce + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 505 min post first-cleavage + worm_development + WBls:0000616 + 505 min post first-cleavage Ce - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24244,20 +24271,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 506 min post first-cleavage - worm_development - WBls:0000617 - 506 min post first-cleavage Ce + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 506 min post first-cleavage + worm_development + WBls:0000617 + 506 min post first-cleavage Ce - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24280,20 +24307,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 507 min post first-cleavage - worm_development - WBls:0000618 - 507 min post first-cleavage Ce + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 507 min post first-cleavage + worm_development + WBls:0000618 + 507 min post first-cleavage Ce - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24316,20 +24343,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 508 min post first-cleavage - worm_development - WBls:0000619 - 508 min post first-cleavage Ce + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 508 min post first-cleavage + worm_development + WBls:0000619 + 508 min post first-cleavage Ce - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24352,20 +24379,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 509 min post first-cleavage - worm_development - WBls:0000620 - 509 min post first-cleavage Ce + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 509 min post first-cleavage + worm_development + WBls:0000620 + 509 min post first-cleavage Ce - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24388,20 +24415,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 510 min post first-cleavage - worm_development - WBls:0000621 - 510 min post first-cleavage Ce + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 510 min post first-cleavage + worm_development + WBls:0000621 + 510 min post first-cleavage Ce - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24424,20 +24451,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 511 min post first-cleavage - worm_development - WBls:0000622 - 511 min post first-cleavage Ce + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 511 min post first-cleavage + worm_development + WBls:0000622 + 511 min post first-cleavage Ce - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24460,20 +24487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 512 min post first-cleavage - worm_development - WBls:0000623 - 512 min post first-cleavage Ce + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 512 min post first-cleavage + worm_development + WBls:0000623 + 512 min post first-cleavage Ce - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24496,20 +24523,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 513 min post first-cleavage - worm_development - WBls:0000624 - 513 min post first-cleavage Ce + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 513 min post first-cleavage + worm_development + WBls:0000624 + 513 min post first-cleavage Ce - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24532,20 +24559,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 514 min post first-cleavage - worm_development - WBls:0000625 - 514 min post first-cleavage Ce + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 514 min post first-cleavage + worm_development + WBls:0000625 + 514 min post first-cleavage Ce - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24568,20 +24595,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 515 min post first-cleavage - worm_development - WBls:0000626 - 515 min post first-cleavage Ce + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 515 min post first-cleavage + worm_development + WBls:0000626 + 515 min post first-cleavage Ce - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24604,20 +24631,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 516 min post first-cleavage - worm_development - WBls:0000627 - 516 min post first-cleavage Ce + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 516 min post first-cleavage + worm_development + WBls:0000627 + 516 min post first-cleavage Ce - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24640,20 +24667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 517 min post first-cleavage - worm_development - WBls:0000628 - 517 min post first-cleavage Ce + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 517 min post first-cleavage + worm_development + WBls:0000628 + 517 min post first-cleavage Ce - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24676,20 +24703,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 518 min post first-cleavage - worm_development - WBls:0000629 - 518 min post first-cleavage Ce + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 518 min post first-cleavage + worm_development + WBls:0000629 + 518 min post first-cleavage Ce - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24712,20 +24739,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 519 min post first-cleavage - worm_development - WBls:0000630 - 519 min post first-cleavage Ce + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 519 min post first-cleavage + worm_development + WBls:0000630 + 519 min post first-cleavage Ce - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24748,20 +24775,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 520 min post first-cleavage - worm_development - WBls:0000631 - 520 min post first-cleavage Ce + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 520 min post first-cleavage + worm_development + WBls:0000631 + 520 min post first-cleavage Ce - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24784,20 +24811,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 521 min post first-cleavage - worm_development - WBls:0000632 - 521 min post first-cleavage Ce + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 521 min post first-cleavage + worm_development + WBls:0000632 + 521 min post first-cleavage Ce - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24820,20 +24847,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 522 min post first-cleavage - worm_development - WBls:0000633 - 522 min post first-cleavage Ce + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 522 min post first-cleavage + worm_development + WBls:0000633 + 522 min post first-cleavage Ce - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24856,20 +24883,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 523 min post first-cleavage - worm_development - WBls:0000634 - 523 min post first-cleavage Ce + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 523 min post first-cleavage + worm_development + WBls:0000634 + 523 min post first-cleavage Ce - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24892,20 +24919,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 524 min post first-cleavage - worm_development - WBls:0000635 - 524 min post first-cleavage Ce + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 524 min post first-cleavage + worm_development + WBls:0000635 + 524 min post first-cleavage Ce - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24928,20 +24955,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 525 min post first-cleavage - worm_development - WBls:0000636 - 525 min post first-cleavage Ce + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 525 min post first-cleavage + worm_development + WBls:0000636 + 525 min post first-cleavage Ce - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24964,20 +24991,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 526 min post first-cleavage - worm_development - WBls:0000637 - 526 min post first-cleavage Ce + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 526 min post first-cleavage + worm_development + WBls:0000637 + 526 min post first-cleavage Ce - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25000,20 +25027,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 527 min post first-cleavage - worm_development - WBls:0000638 - 527 min post first-cleavage Ce + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 527 min post first-cleavage + worm_development + WBls:0000638 + 527 min post first-cleavage Ce - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25036,20 +25063,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 528 min post first-cleavage - worm_development - WBls:0000639 - 528 min post first-cleavage Ce + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 528 min post first-cleavage + worm_development + WBls:0000639 + 528 min post first-cleavage Ce - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25072,20 +25099,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 529 min post first-cleavage - worm_development - WBls:0000640 - 529 min post first-cleavage Ce + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 529 min post first-cleavage + worm_development + WBls:0000640 + 529 min post first-cleavage Ce - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25108,20 +25135,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 530 min post first-cleavage - worm_development - WBls:0000641 - 530 min post first-cleavage Ce + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 530 min post first-cleavage + worm_development + WBls:0000641 + 530 min post first-cleavage Ce - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25144,20 +25171,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 531 min post first-cleavage - worm_development - WBls:0000642 - 531 min post first-cleavage Ce + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 531 min post first-cleavage + worm_development + WBls:0000642 + 531 min post first-cleavage Ce - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25180,20 +25207,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 532 min post first-cleavage - worm_development - WBls:0000643 - 532 min post first-cleavage Ce + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 532 min post first-cleavage + worm_development + WBls:0000643 + 532 min post first-cleavage Ce - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25216,20 +25243,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 533 min post first-cleavage - worm_development - WBls:0000644 - 533 min post first-cleavage Ce + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 533 min post first-cleavage + worm_development + WBls:0000644 + 533 min post first-cleavage Ce - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25252,20 +25279,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 534 min post first-cleavage - worm_development - WBls:0000645 - 534 min post first-cleavage Ce + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 534 min post first-cleavage + worm_development + WBls:0000645 + 534 min post first-cleavage Ce - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25288,20 +25315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 535 min post first-cleavage - worm_development - WBls:0000646 - 535 min post first-cleavage Ce + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 535 min post first-cleavage + worm_development + WBls:0000646 + 535 min post first-cleavage Ce - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25324,20 +25351,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 536 min post first-cleavage - worm_development - WBls:0000647 - 536 min post first-cleavage Ce + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 536 min post first-cleavage + worm_development + WBls:0000647 + 536 min post first-cleavage Ce - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25360,20 +25387,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 537 min post first-cleavage - worm_development - WBls:0000648 - 537 min post first-cleavage Ce + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 537 min post first-cleavage + worm_development + WBls:0000648 + 537 min post first-cleavage Ce - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25396,20 +25423,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 538 min post first-cleavage - worm_development - WBls:0000649 - 538 min post first-cleavage Ce + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 538 min post first-cleavage + worm_development + WBls:0000649 + 538 min post first-cleavage Ce - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25432,20 +25459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 539 min post first-cleavage - worm_development - WBls:0000650 - 539 min post first-cleavage Ce + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 539 min post first-cleavage + worm_development + WBls:0000650 + 539 min post first-cleavage Ce - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25468,20 +25495,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 540 min post first-cleavage - worm_development - WBls:0000651 - 540 min post first-cleavage Ce + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 540 min post first-cleavage + worm_development + WBls:0000651 + 540 min post first-cleavage Ce - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25504,20 +25531,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 541 min post first-cleavage - worm_development - WBls:0000652 - 541 min post first-cleavage Ce + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 541 min post first-cleavage + worm_development + WBls:0000652 + 541 min post first-cleavage Ce - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25540,20 +25567,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 542 min post first-cleavage - worm_development - WBls:0000653 - 542 min post first-cleavage Ce + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 542 min post first-cleavage + worm_development + WBls:0000653 + 542 min post first-cleavage Ce - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25576,20 +25603,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 543 min post first-cleavage - worm_development - WBls:0000654 - 543 min post first-cleavage Ce + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 543 min post first-cleavage + worm_development + WBls:0000654 + 543 min post first-cleavage Ce - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25612,20 +25639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 544 min post first-cleavage - worm_development - WBls:0000655 - 544 min post first-cleavage Ce + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 544 min post first-cleavage + worm_development + WBls:0000655 + 544 min post first-cleavage Ce - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25648,20 +25675,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 545 min post first-cleavage - worm_development - WBls:0000656 - 545 min post first-cleavage Ce + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 545 min post first-cleavage + worm_development + WBls:0000656 + 545 min post first-cleavage Ce - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25684,20 +25711,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 546 min post first-cleavage - worm_development - WBls:0000657 - 546 min post first-cleavage Ce + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 546 min post first-cleavage + worm_development + WBls:0000657 + 546 min post first-cleavage Ce - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25720,20 +25747,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 547 min post first-cleavage - worm_development - WBls:0000658 - 547 min post first-cleavage Ce + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 547 min post first-cleavage + worm_development + WBls:0000658 + 547 min post first-cleavage Ce - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25756,20 +25783,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 548 min post first-cleavage - worm_development - WBls:0000659 - 548 min post first-cleavage Ce + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 548 min post first-cleavage + worm_development + WBls:0000659 + 548 min post first-cleavage Ce - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25792,20 +25819,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 549 min post first-cleavage - worm_development - WBls:0000660 - 549 min post first-cleavage Ce + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 549 min post first-cleavage + worm_development + WBls:0000660 + 549 min post first-cleavage Ce - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25828,20 +25855,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 550 min post first-cleavage - worm_development - WBls:0000661 - 550 min post first-cleavage Ce + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 550 min post first-cleavage + worm_development + WBls:0000661 + 550 min post first-cleavage Ce - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25867,24 +25894,24 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2014-11-10T09:29:36Z - WBls:0000078 - unsheathed microfilaria - Brugia mature microfilaria - mature microfilaria Bma - unsheathed microfilaria Bma - worm_development - WBls:0000663 - Brugia unsheathed microfilaria + 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. + danielaraciti + 2014-11-10T09:29:36Z + WBls:0000078 + unsheathed microfilaria + Brugia mature microfilaria + mature microfilaria Bma + unsheathed microfilaria Bma + worm_development + WBls:0000663 + Brugia unsheathed microfilaria - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -25893,23 +25920,23 @@ For example, A and B may be gene products and binding of B by A positively regul - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:23:44Z - MF - microfilaria nematode - microfilariae - worm_development - WBls:0000664 - Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. - microfilaria + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:23:44Z + MF + microfilaria nematode + microfilariae + worm_development + WBls:0000664 + Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. + microfilaria - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - WB:dr - WB:jl + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + WB:dr + WB:jl @@ -25925,22 +25952,22 @@ For example, A and B may be gene products and binding of B by A positively regul - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:25:34Z - microfilaria - Brugia MF - microfilaria Bma - worm_development - WBls:0000665 - Brugia microfilaria + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:25:34Z + microfilaria + Brugia MF + microfilaria Bma + worm_development + WBls:0000665 + Brugia microfilaria - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - WB:dr - WB:mb + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + WB:dr + WB:mb @@ -25962,20 +25989,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - danielaraciti - 2014-11-25T09:50:35Z - unsheathed microfilaria nematode - unsheathed microfilariae - worm_development - WBls:0000666 - unsheathed microfilaria + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + danielaraciti + 2014-11-25T09:50:35Z + unsheathed microfilaria nematode + unsheathed microfilariae + worm_development + WBls:0000666 + unsheathed microfilaria - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - WB:WBPerson2987 + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + WB:WBPerson2987 @@ -25984,21 +26011,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Microfilaria larvae found in nodules and ulcers. - danielaraciti - 2014-11-25T09:52:54Z - nodular microfilariae - nodular microfilariae nematode - worm_development - WBls:0000667 - nodular microfilaria + Microfilaria larvae found in nodules and ulcers. + danielaraciti + 2014-11-25T09:52:54Z + nodular microfilariae + nodular microfilariae nematode + worm_development + WBls:0000667 + nodular microfilaria - Microfilaria larvae found in nodules and ulcers. - PMID:1796232 - WB:WBPerson4055 + Microfilaria larvae found in nodules and ulcers. + PMID:1796232 + WB:WBPerson4055 @@ -26007,21 +26034,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Microfilaria larvae found subcutaneously - danielaraciti - 2014-11-25T09:52:54Z - skin microfilariae - worm_development - WBls:0000668 - skin microfilaria + Microfilaria larvae found subcutaneously + danielaraciti + 2014-11-25T09:52:54Z + skin microfilariae + worm_development + WBls:0000668 + skin microfilaria - Microfilaria larvae found subcutaneously - PMID:20772951 - PMID:7797912 - WB:WBPerson4055 + Microfilaria larvae found subcutaneously + PMID:20772951 + PMID:7797912 + WB:WBPerson4055 @@ -26030,19 +26057,19 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - danielaraciti - 2014-11-26T11:49:22Z - unfertilized egg - worm_development - WBls:0000669 - unfertilized egg Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + danielaraciti + 2014-11-26T11:49:22Z + unfertilized egg + worm_development + WBls:0000669 + unfertilized egg Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - WB:WBPerson2987 + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + WB:WBPerson2987 @@ -26064,17 +26091,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - 6-days post-L4 adult hermaphrodite - worm_development - WBls:0000670 - 6-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + 6-days post-L4 adult hermaphrodite + worm_development + WBls:0000670 + 6-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - WB:dr + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + WB:dr @@ -26096,17 +26123,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - 7-days post-L4 adult hermaphrodite - worm_development - WBls:0000671 - 7-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + 7-days post-L4 adult hermaphrodite + worm_development + WBls:0000671 + 7-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - WB:dr + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + WB:dr @@ -26128,17 +26155,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - 8-days post-L4 adult hermaphrodite - worm_development - WBls:0000672 - 8-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + 8-days post-L4 adult hermaphrodite + worm_development + WBls:0000672 + 8-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - WB:dr + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + WB:dr @@ -26160,17 +26187,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - 9-days post-L4 adult hermaphrodite - worm_development - WBls:0000673 - 9-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + 9-days post-L4 adult hermaphrodite + worm_development + WBls:0000673 + 9-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - WB:dr + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + WB:dr @@ -26192,17 +26219,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - 10-days post-L4 adult hermaphrodite - worm_development - WBls:0000674 - 10-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + 10-days post-L4 adult hermaphrodite + worm_development + WBls:0000674 + 10-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - WB:dr + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + WB:dr @@ -26224,17 +26251,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - 15-days post-L4 adult hermaphrodite - worm_development - WBls:0000675 - 15-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + 15-days post-L4 adult hermaphrodite + worm_development + WBls:0000675 + 15-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - WB:dr + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + WB:dr @@ -26256,17 +26283,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - 20-days post-L4 adult hermaphrodite - worm_development - WBls:0000676 - 20-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + 20-days post-L4 adult hermaphrodite + worm_development + WBls:0000676 + 20-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - WB:dr + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + WB:dr @@ -26276,19 +26303,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - jl16 - 2015-03-19T10:51:48Z - free-living stage - worm_development - WBls:0000677 - Strongyloides free-living stage + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + jl16 + 2015-03-19T10:51:48Z + free-living stage + worm_development + WBls:0000677 + Strongyloides free-living stage - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + WB:jl @@ -26298,19 +26325,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - jl16 - 2015-03-19T10:52:41Z - parasitic stage - worm_development - WBls:0000678 - Strongyloides parasitic stage + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + jl16 + 2015-03-19T10:52:41Z + parasitic stage + worm_development + WBls:0000678 + Strongyloides parasitic stage - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + WB:jl @@ -26319,20 +26346,20 @@ For example, A and B may be gene products and binding of B by A positively regul - Larval stage that is capable of infecting a host organism. - jl16 - 2015-03-19T11:21:35Z - infective larva - worm_development - WBls:0000679 - Host organism here refers to the main host organism rather than intermediate hosts. - nematode infective stage larva + Larval stage that is capable of infecting a host organism. + jl16 + 2015-03-19T11:21:35Z + infective larva + worm_development + WBls:0000679 + Host organism here refers to the main host organism rather than intermediate hosts. + nematode infective stage larva - Larval stage that is capable of infecting a host organism. - WB:jl + Larval stage that is capable of infecting a host organism. + WB:jl @@ -26343,21 +26370,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2015-03-19T11:27:15Z - infective L3 - Strongyloides iL3 - Strongyloides infective stage larva - worm_development - WBls:0000680 - Strongyloides infective L3 + 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. + jl16 + 2015-03-19T11:27:15Z + infective L3 + Strongyloides iL3 + Strongyloides infective stage larva + worm_development + WBls:0000680 + Strongyloides infective L3 - 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. - WB:jl + 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. + WB:jl @@ -26367,20 +26394,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - jl16 - 2015-03-19T11:36:03Z - parasitic female - Strongyloides L5 - worm_development - WBls:0000681 - Strongyloides parasitic female + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + jl16 + 2015-03-19T11:36:03Z + parasitic female + Strongyloides L5 + worm_development + WBls:0000681 + Strongyloides parasitic female - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - WB:jl + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + WB:jl @@ -26390,20 +26417,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - jl16 - 2015-03-19T11:48:09Z - free-living adult - Strongyloides free-living L5 - worm_development - WBls:0000682 - Strongyloides free-living adult + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + jl16 + 2015-03-19T11:48:09Z + free-living adult + Strongyloides free-living L5 + worm_development + WBls:0000682 + Strongyloides free-living adult - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - WB:jl + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + WB:jl @@ -26425,20 +26452,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:03:09Z - L4.0 larva - worm_development - WBls:0000683 - L4.0 larva Ce + 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. + danielaraciti + 2015-06-03T09:03:09Z + L4.0 larva + worm_development + WBls:0000683 + L4.0 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26460,20 +26487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:06:19Z - L4.1 larva - worm_development - WBls:0000684 - L4.1 larva Ce + 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. + danielaraciti + 2015-06-03T09:06:19Z + L4.1 larva + worm_development + WBls:0000684 + L4.1 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26495,20 +26522,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:09:03Z - L4.2 larva - worm_development - WBls:0000685 - L4.2 larva Ce + 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. + danielaraciti + 2015-06-03T09:09:03Z + L4.2 larva + worm_development + WBls:0000685 + L4.2 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26530,20 +26557,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:10:09Z - L4.3 larva - worm_development - WBls:0000686 - L4.3 larva Ce + 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. + danielaraciti + 2015-06-03T09:10:09Z + L4.3 larva + worm_development + WBls:0000686 + L4.3 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26565,20 +26592,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:11:12Z - L4.4 larva - worm_development - WBls:0000687 - L4.4 larva Ce + 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. + danielaraciti + 2015-06-03T09:11:12Z + L4.4 larva + worm_development + WBls:0000687 + L4.4 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26600,20 +26627,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:13:09Z - L4.5 larva - worm_development - WBls:0000688 - L4.5 larva Ce + 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. + danielaraciti + 2015-06-03T09:13:09Z + L4.5 larva + worm_development + WBls:0000688 + L4.5 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26635,20 +26662,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:15:18Z - L4.6 larva - worm_development - WBls:0000689 - L4.6 larva Ce + 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. + danielaraciti + 2015-06-03T09:15:18Z + L4.6 larva + worm_development + WBls:0000689 + L4.6 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26670,20 +26697,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:16:07Z - L4.7 larva - worm_development - WBls:0000690 - L4.7 larva Ce + 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. + danielaraciti + 2015-06-03T09:16:07Z + L4.7 larva + worm_development + WBls:0000690 + L4.7 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26705,20 +26732,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:18:02Z - L4.8 larva - worm_development - WBls:0000691 - L4.8 larva Ce + 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. + danielaraciti + 2015-06-03T09:18:02Z + L4.8 larva + worm_development + WBls:0000691 + L4.8 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26740,20 +26767,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:20:37Z - L4.9 larva - worm_development - WBls:0000692 - L4.9 larva Ce + 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. + danielaraciti + 2015-06-03T09:20:37Z + L4.9 larva + worm_development + WBls:0000692 + L4.9 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26776,19 +26803,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T09:27:59Z - 560 min post first-cleavage - worm_development - WBls:0000693 - 560 min post first-cleavage Ce + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T09:27:59Z + 560 min post first-cleavage + worm_development + WBls:0000693 + 560 min post first-cleavage Ce - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26811,19 +26838,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T10:07:46Z - 570 min post first-cleavage - worm_development - WBls:0000694 - 570 min post first-cleavage Ce + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T10:07:46Z + 570 min post first-cleavage + worm_development + WBls:0000694 + 570 min post first-cleavage Ce - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26846,19 +26873,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:08:29Z - 640 min post first-cleavage - worm_development - WBls:0000695 - 640 min post first-cleavage Ce + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:08:29Z + 640 min post first-cleavage + worm_development + WBls:0000695 + 640 min post first-cleavage Ce - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26881,19 +26908,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:11:15Z - 650 min post first-cleavage - worm_development - WBls:0000696 - 650 min post first-cleavage Ce + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:11:15Z + 650 min post first-cleavage + worm_development + WBls:0000696 + 650 min post first-cleavage Ce - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26916,19 +26943,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:13:05Z - 660 min post first-cleavage - worm_development - WBls:0000697 - 660 min post first-cleavage Ce + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:13:05Z + 660 min post first-cleavage + worm_development + WBls:0000697 + 660 min post first-cleavage Ce - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26951,19 +26978,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:16:33Z - 720 min post first-cleavage - worm_development - WBls:0000698 - 720 min post first-cleavage Ce + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:16:33Z + 720 min post first-cleavage + worm_development + WBls:0000698 + 720 min post first-cleavage Ce - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26986,19 +27013,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:18:49Z - 770 min post first-cleavage - worm_development - WBls:0000699 - 770 min post first-cleavage Ce + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:18:49Z + 770 min post first-cleavage + worm_development + WBls:0000699 + 770 min post first-cleavage Ce - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27021,19 +27048,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:23:34Z - 780 min post first-cleavage - worm_development - WBls:0000700 - 780 min post first-cleavage Ce + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:23:34Z + 780 min post first-cleavage + worm_development + WBls:0000700 + 780 min post first-cleavage Ce - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27056,19 +27083,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:25:47Z - 820 min post first-cleavage - worm_development - WBls:0000701 - 820 min post first-cleavage Ce + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:25:47Z + 820 min post first-cleavage + worm_development + WBls:0000701 + 820 min post first-cleavage Ce - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27091,19 +27118,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:28:41Z - 830 min post first-cleavage - worm_development - WBls:0000702 - 830 min post first-cleavage Ce + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:28:41Z + 830 min post first-cleavage + worm_development + WBls:0000702 + 830 min post first-cleavage Ce - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27126,19 +27153,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:30:33Z - 850 min post first-cleavage - worm_development - WBls:0000703 - 850 min post first-cleavage Ce + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:30:33Z + 850 min post first-cleavage + worm_development + WBls:0000703 + 850 min post first-cleavage Ce - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27147,20 +27174,20 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage in Platyhelminthes (flatworms). - jl16 - 2016-03-16T11:14:50Z - Platyhelminthes developmental stage - platyhelminth developmental stage - worm_development - WBls:0000704 - Platyhelminthes life stage + Any developmental stage in Platyhelminthes (flatworms). + jl16 + 2016-03-16T11:14:50Z + Platyhelminthes developmental stage + platyhelminth developmental stage + worm_development + WBls:0000704 + Platyhelminthes life stage - Any developmental stage in Platyhelminthes (flatworms). - WB:jl + Any developmental stage in Platyhelminthes (flatworms). + WB:jl @@ -27169,20 +27196,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - jl16 - 2016-03-16T11:17:04Z - egg - platyhelminth egg - worm_development - WBls:0000705 - Platyhelminthes egg + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + jl16 + 2016-03-16T11:17:04Z + egg + platyhelminth egg + worm_development + WBls:0000705 + Platyhelminthes egg - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - WB:jl + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + WB:jl @@ -27191,18 +27218,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-16T11:35:26Z - worm_development - WBls:0000706 - miracidium + 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. + jl16 + 2016-03-16T11:35:26Z + worm_development + WBls:0000706 + miracidium - 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. - WB:jl + 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. + WB:jl @@ -27211,18 +27238,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-16T11:42:15Z - worm_development - WBls:0000707 - sporocyst + 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. + jl16 + 2016-03-16T11:42:15Z + worm_development + WBls:0000707 + sporocyst - 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. - WB:jl + 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. + WB:jl @@ -27231,20 +27258,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-16T11:44:51Z - cercariae - worm_development - WBls:0000708 - cercarium + 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. + jl16 + 2016-03-16T11:44:51Z + cercariae + worm_development + WBls:0000708 + cercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27260,19 +27287,19 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-08-16T07:46:43Z - somule - worm_development - WBls:0000709 - schistosomulum + 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. + jl16 + 2016-08-16T07:46:43Z + somule + worm_development + WBls:0000709 + schistosomulum - 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 + 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 @@ -27288,20 +27315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - jl16 - 2016-08-16T07:51:21Z - adult - platyhelminth adult - worm_development - WBls:0000710 - Platyhelminthes adult + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + jl16 + 2016-08-16T07:51:21Z + adult + platyhelminth adult + worm_development + WBls:0000710 + Platyhelminthes adult - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - WB:jl + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + WB:jl @@ -27310,20 +27337,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental stage of a Digenean (fluke). - jl16 - 2016-03-17T12:11:31Z - fluke life stage - worm_development - WBls:0000711 - Digeneans include the Schistosomatidae (blood flukes). - Digenean life stage + A developmental stage of a Digenean (fluke). + jl16 + 2016-03-17T12:11:31Z + fluke life stage + worm_development + WBls:0000711 + Digeneans include the Schistosomatidae (blood flukes). + Digenean life stage - A developmental stage of a Digenean (fluke). - WB:jl + A developmental stage of a Digenean (fluke). + WB:jl @@ -27332,18 +27359,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage of a Cestode (tapeworm). - jl16 - 2016-03-17T12:18:32Z - worm_development - WBls:0000712 - Cestoda life stage + Any developmental stage of a Cestode (tapeworm). + jl16 + 2016-03-17T12:18:32Z + worm_development + WBls:0000712 + Cestoda life stage - Any developmental stage of a Cestode (tapeworm). - WB:jl + Any developmental stage of a Cestode (tapeworm). + WB:jl @@ -27352,19 +27379,19 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T13:42:45Z - worm_development - hexcanth - WBls:0000713 - oncosphere + 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. + jl16 + 2016-03-17T13:42:45Z + worm_development + hexcanth + WBls:0000713 + oncosphere - 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. - WB:jl + 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. + WB:jl @@ -27379,22 +27406,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T14:27:42Z - hydatid cyst - metacestode vesicle - worm_development - WBls:0000714 - 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. - hydatid cyst stage + 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. + jl16 + 2016-03-17T14:27:42Z + hydatid cyst + metacestode vesicle + worm_development + WBls:0000714 + 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. + hydatid cyst stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -27409,21 +27436,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T14:40:14Z - protoscolex - worm_development - WBls:0000715 - 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. - protoscolex stage + 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. + jl16 + 2016-03-17T14:40:14Z + protoscolex + worm_development + WBls:0000715 + 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. + protoscolex stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -27432,20 +27459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T15:02:35Z - metacestode stage - worm_development - WBls:0000716 - metacestode + 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. + jl16 + 2016-03-17T15:02:35Z + metacestode stage + worm_development + WBls:0000716 + metacestode - 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. - ISBN:070202788X - WB:jl + 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. + ISBN:070202788X + WB:jl @@ -27460,18 +27487,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-18T11:15:07Z - worm_development - WBls:0000717 - cysticercoid stage + 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. + jl16 + 2016-03-18T11:15:07Z + worm_development + WBls:0000717 + cysticercoid stage - 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 + 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 @@ -27480,21 +27507,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T12:02:59Z - NEJ - newly emerged juveniles - worm_development - WBls:0000718 - newly excysted juveniles + 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. + jl16 + 2016-04-27T12:02:59Z + NEJ + newly emerged juveniles + worm_development + WBls:0000718 + newly excysted juveniles - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27503,19 +27530,19 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T12:56:49Z - worm_development - WBls:0000719 - juvenile fluke + 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. + jl16 + 2016-04-27T12:56:49Z + worm_development + WBls:0000719 + juvenile fluke - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27524,20 +27551,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T13:01:06Z - metacercariae - worm_development - WBls:0000720 - metacercarium + 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. + jl16 + 2016-04-27T13:01:06Z + metacercariae + worm_development + WBls:0000720 + metacercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27545,22 +27572,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T17:03:22Z - nematode adult intestinal phase - worm_development - WBls:0000721 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult intestinal stage + 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. + jl16 + 2016-04-27T17:03:22Z + nematode adult intestinal phase + worm_development + WBls:0000721 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult intestinal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -27568,22 +27595,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T17:13:57Z - nematode adult lumenal phase - worm_development - WBls:0000722 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult lumenal stage + 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. + jl16 + 2016-04-27T17:13:57Z + nematode adult lumenal phase + worm_development + WBls:0000722 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult lumenal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -27592,18 +27619,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Onchocerca embryonic life stage. - fr7 - 2017-06-09T10:22:55Z - worm_development - WBls:0000723 - Onchocerca embryonic life stage + Onchocerca embryonic life stage. + fr7 + 2017-06-09T10:22:55Z + worm_development + WBls:0000723 + Onchocerca embryonic life stage - Onchocerca embryonic life stage. - WB:fr + Onchocerca embryonic life stage. + WB:fr @@ -27612,20 +27639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:54:14Z - OPL:0000017 - 3 hr somule - worm_development - WBls:0000724 - 3 hr schistosomulum + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:54:14Z + OPL:0000017 + 3 hr somule + worm_development + WBls:0000724 + 3 hr schistosomulum - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -27640,20 +27667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:56:23Z - OPL:0000172 - 24 hr somule - worm_development - WBls:0000725 - 24 hr schistosomulum + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:56:23Z + OPL:0000172 + 24 hr somule + worm_development + WBls:0000725 + 24 hr schistosomulum - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -27662,18 +27689,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Onchocerca post-embryonic life stage. - fr7 - 2017-06-09T10:23:56Z - worm_development - WBls:0000726 - Onchocerca post-embryonic life stage + Onchocerca post-embryonic life stage. + fr7 + 2017-06-09T10:23:56Z + worm_development + WBls:0000726 + Onchocerca post-embryonic life stage - Onchocerca post-embryonic life stage. - WB:fr + Onchocerca post-embryonic life stage. + WB:fr @@ -27689,18 +27716,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fr7 - 2017-06-09T10:24:33Z - worm_development - WBls:0000727 - Onchocerca microfilaria (mammalian stage) + 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. + fr7 + 2017-06-09T10:24:33Z + worm_development + WBls:0000727 + Onchocerca microfilaria (mammalian stage) - 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 + 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 @@ -27716,18 +27743,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fr7 - 2017-06-09T10:28:52Z - worm_development - WBls:0000728 - Onchocerca microfilaria (vector stage) + 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. + fr7 + 2017-06-09T10:28:52Z + worm_development + WBls:0000728 + Onchocerca microfilaria (vector stage) - 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 + 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 @@ -27736,18 +27763,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult female Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:28:29Z - worm_development - WBls:0000729 - Strongyloides free living adult female + Adult female Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:28:29Z + worm_development + WBls:0000729 + Strongyloides free living adult female - Adult female Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult female Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -27763,18 +27790,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L1 larvae that develop from the microfilariae in the arthropod vector. - fr7 - 2017-06-09T10:35:04Z - worm_development - WBls:0000730 - Onchocerca L1 larva + L1 larvae that develop from the microfilariae in the arthropod vector. + fr7 + 2017-06-09T10:35:04Z + worm_development + WBls:0000730 + Onchocerca L1 larva - L1 larvae that develop from the microfilariae in the arthropod vector. - WB:fr + L1 larvae that develop from the microfilariae in the arthropod vector. + WB:fr @@ -27790,18 +27817,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L2 larvae that develops from the L1 larvae in the arthropod vector. - fr7 - 2017-06-09T10:40:31Z - worm_development - WBls:0000731 - Onchocerca L2 larva + L2 larvae that develops from the L1 larvae in the arthropod vector. + fr7 + 2017-06-09T10:40:31Z + worm_development + WBls:0000731 + Onchocerca L2 larva - L2 larvae that develops from the L1 larvae in the arthropod vector. - WB:fr + L2 larvae that develops from the L1 larvae in the arthropod vector. + WB:fr @@ -27817,18 +27844,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fr7 - 2017-06-09T10:45:40Z - worm_development - WBls:0000732 - Onchocerca L3 larva (vector stage) + 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. + fr7 + 2017-06-09T10:45:40Z + worm_development + WBls:0000732 + Onchocerca L3 larva (vector stage) - 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 + 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 @@ -27844,18 +27871,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - fr7 - 2017-06-09T10:48:52Z - worm_development - WBls:0000733 - Onchocerca L3 larva (mammalian stage) + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + fr7 + 2017-06-09T10:48:52Z + worm_development + WBls:0000733 + Onchocerca L3 larva (mammalian stage) - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - WB:fr + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + WB:fr @@ -27864,18 +27891,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - fr7 - 2017-06-09T10:50:17Z - worm_development - WBls:0000734 - Onchocerca L3 larva in vitro cultured D1 + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + fr7 + 2017-06-09T10:50:17Z + worm_development + WBls:0000734 + Onchocerca L3 larva in vitro cultured D1 - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + WB:fr @@ -27890,18 +27917,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - fr7 - 2017-06-09T10:51:09Z - worm_development - WBls:0000735 - Onchocerca L3 larva in vitro cultured D2 + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + fr7 + 2017-06-09T10:51:09Z + worm_development + WBls:0000735 + Onchocerca L3 larva in vitro cultured D2 - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + WB:fr @@ -27916,18 +27943,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - fr7 - 2017-06-09T10:53:33Z - worm_development - WBls:0000736 - Onchocerca L3 larva in vitro cultured D3 + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + fr7 + 2017-06-09T10:53:33Z + worm_development + WBls:0000736 + Onchocerca L3 larva in vitro cultured D3 - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + WB:fr @@ -27943,18 +27970,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L4 larvae that develop from L3 larvae in the mammalian host. - fr7 - 2017-06-09T10:59:07Z - worm_development - WBls:0000737 - Onchocerca L4 larva + L4 larvae that develop from L3 larvae in the mammalian host. + fr7 + 2017-06-09T10:59:07Z + worm_development + WBls:0000737 + Onchocerca L4 larva - L4 larvae that develop from L3 larvae in the mammalian host. - WB:fr + L4 larvae that develop from L3 larvae in the mammalian host. + WB:fr @@ -27963,18 +27990,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - fr7 - 2017-06-09T11:01:46Z - worm_development - WBls:0000738 - Onchocerca L4 larva in vitro cultured + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + fr7 + 2017-06-09T11:01:46Z + worm_development + WBls:0000738 + Onchocerca L4 larva in vitro cultured - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - WB:fr + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + WB:fr @@ -27990,18 +28017,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult male that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:02:24Z - worm_development - WBls:0000739 - Onchocerca adult male + Adult male that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:02:24Z + worm_development + WBls:0000739 + Onchocerca adult male - Adult male that has developed from L4 larvae in the mammalian host. - WB:fr + Adult male that has developed from L4 larvae in the mammalian host. + WB:fr @@ -28017,18 +28044,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult female that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:03:10Z - worm_development - WBls:0000740 - Onchocerca adult female + Adult female that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:03:10Z + worm_development + WBls:0000740 + Onchocerca adult female - Adult female that has developed from L4 larvae in the mammalian host. - WB:fr + Adult female that has developed from L4 larvae in the mammalian host. + WB:fr @@ -28037,18 +28064,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage of a nematode of the Onchocerca genus. - fr7 - 2017-06-09T10:18:45Z - worm_development - WBls:0000741 - Onchocerca life stage + Any developmental stage of a nematode of the Onchocerca genus. + fr7 + 2017-06-09T10:18:45Z + worm_development + WBls:0000741 + Onchocerca life stage - Any developmental stage of a nematode of the Onchocerca genus. - WB:fr + Any developmental stage of a nematode of the Onchocerca genus. + WB:fr @@ -28057,18 +28084,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult male Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:34:19Z - worm_development - WBls:0000742 - Strongyloides free living adult male + Adult male Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:34:19Z + worm_development + WBls:0000742 + Strongyloides free living adult male - Adult male Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult male Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -28078,19 +28105,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - jl16 - 2015-11-25T11:38:04Z - post free-living L1 - worm_development - WBls:0000793 - Strongyloides post free-living L1 + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + jl16 + 2015-11-25T11:38:04Z + post free-living L1 + worm_development + WBls:0000793 + Strongyloides post free-living L1 - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + WB:jl @@ -28100,19 +28127,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - jl16 - 2015-11-25T11:39:14Z - post parasitic L1 - worm_development - WBls:0000794 - Strongyloides post parasitic L1 + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + jl16 + 2015-11-25T11:39:14Z + post parasitic L1 + worm_development + WBls:0000794 + Strongyloides post parasitic L1 - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + WB:jl @@ -28121,19 +28148,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - jl16 - 2015-11-25T11:55:54Z - post parasitic L3 - worm_development - WBls:0000795 - Strongyloides post parasitic L3 + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + jl16 + 2015-11-25T11:55:54Z + post parasitic L3 + worm_development + WBls:0000795 + Strongyloides post parasitic L3 - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + WB:jl @@ -28143,19 +28170,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - jl16 - 2015-11-25T11:57:47Z - free-living L3 - worm_development - WBls:0000796 - Strongyloides post free-living L3 + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + jl16 + 2015-11-25T11:57:47Z + free-living L3 + worm_development + WBls:0000796 + Strongyloides post free-living L3 - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + WB:jl @@ -28177,19 +28204,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - danielaraciti - 2016-10-19T10:13:23Z - 11-days post-L4 adult hermaphrodite - worm_development - WBls:0000797 - 11-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + danielaraciti + 2016-10-19T10:13:23Z + 11-days post-L4 adult hermaphrodite + worm_development + WBls:0000797 + 11-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - WB:dr + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + WB:dr @@ -28211,19 +28238,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - danielaraciti - 2016-10-19T10:13:47Z - 12-days post-L4 adult hermaphrodite - worm_development - WBls:0000798 - 12-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + danielaraciti + 2016-10-19T10:13:47Z + 12-days post-L4 adult hermaphrodite + worm_development + WBls:0000798 + 12-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - WB:dr + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + WB:dr @@ -28245,19 +28272,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - danielaraciti - 2016-10-19T10:14:11Z - 13-days post-L4 adult hermaphrodite - worm_development - WBls:0000799 - 13-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + danielaraciti + 2016-10-19T10:14:11Z + 13-days post-L4 adult hermaphrodite + worm_development + WBls:0000799 + 13-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - WB:dr + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + WB:dr @@ -28279,19 +28306,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - danielaraciti - 2016-10-19T10:14:40Z - 14-days post-L4 adult hermaphrodite - worm_development - WBls:0000800 - 14-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + danielaraciti + 2016-10-19T10:14:40Z + 14-days post-L4 adult hermaphrodite + worm_development + WBls:0000800 + 14-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - WB:dr + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + WB:dr @@ -28313,20 +28340,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. - danielaraciti - 2017-11-14T10:14:40Z - worm_development - WBls:0000801 - newly hatched L1 larval stage Ce + The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. + danielaraciti + 2017-11-14T10:14:40Z + worm_development + WBls:0000801 + newly hatched L1 larval stage Ce - 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 + 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 @@ -28342,20 +28369,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. - danielaraciti - 2017-11-14T10:15:40Z - L1 diapause - worm_development - WBls:0000802 - L1 arrest Ce + The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. + danielaraciti + 2017-11-14T10:15:40Z + L1 diapause + worm_development + WBls:0000802 + L1 arrest Ce - 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 + 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 @@ -28380,16 +28407,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during embryogenesis - worm_development - WBls:0000803 + A C. elegans life stage that occurs during embryogenesis + worm_development + WBls:0000803 C. elegans life stage occurring during embryogenesis - A C. elegans life stage that occurs during embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs during embryogenesis + WB:WBPerson2987 @@ -28414,16 +28441,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs after embryogenesis - worm_development - WBls:0000804 + A C. elegans life stage that occurs after embryogenesis + worm_development + WBls:0000804 C. elegans life stage occurring post embryogenesis - A C. elegans life stage that occurs after embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs after embryogenesis + WB:WBPerson2987 @@ -28448,16 +28475,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the elongating embryo life stage - worm_development - WBls:0000805 + A C. elegans life stage that occurs during the elongating embryo life stage + worm_development + WBls:0000805 C. elegans life stage occurring during elongating embryo - A C. elegans life stage that occurs during the elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the elongating embryo life stage + WB:WBPerson2987 @@ -28482,16 +28509,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - worm_development - WBls:0000806 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + worm_development + WBls:0000806 C. elegans life stage occurring during 1.5-fold embryo - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + WB:WBPerson2987 @@ -28516,16 +28543,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the 2-fold embryo life stage - worm_development - WBls:0000807 + A C. elegans life stage that occurs during the 2-fold embryo life stage + worm_development + WBls:0000807 C. elegans life stage occurring during 2-fold embryo - A C. elegans life stage that occurs during the 2-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 2-fold embryo life stage + WB:WBPerson2987 @@ -28550,16 +28577,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the 3-fold embryo life stage - worm_development - WBls:0000808 + A C. elegans life stage that occurs during the 3-fold embryo life stage + worm_development + WBls:0000808 C. elegans life stage occurring during 3-fold embryo - A C. elegans life stage that occurs during the 3-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 3-fold embryo life stage + WB:WBPerson2987 @@ -28584,16 +28611,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the bean embryo life stage - worm_development - WBls:0000809 + A C. elegans life stage that occurs during the bean embryo life stage + worm_development + WBls:0000809 C. elegans life stage occurring during bean embryo - A C. elegans life stage that occurs during the bean embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the bean embryo life stage + WB:WBPerson2987 @@ -28618,16 +28645,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the comma embryo life stage - worm_development - WBls:0000810 + A C. elegans life stage that occurs during the comma embryo life stage + worm_development + WBls:0000810 C. elegans life stage occurring during comma embryo - A C. elegans life stage that occurs during the comma embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the comma embryo life stage + WB:WBPerson2987 @@ -28652,16 +28679,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the fully-elongating embryo life stage - worm_development - WBls:0000811 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + worm_development + WBls:0000811 C. elegans life stage occurring during fully-elongated embryo - A C. elegans life stage that occurs during the fully-elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + WB:WBPerson2987 @@ -28686,16 +28713,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the proliferating embryo life stage - worm_development - WBls:0000812 + A C. elegans life stage that occurs during the proliferating embryo life stage + worm_development + WBls:0000812 C. elegans life stage occurring during proliferating embryo - A C. elegans life stage that occurs during the proliferating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the proliferating embryo life stage + WB:WBPerson2987 @@ -28720,16 +28747,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the blastula embryo life stage - worm_development - WBls:0000813 + A C. elegans life stage that occurs during the blastula embryo life stage + worm_development + WBls:0000813 C. elegans life stage occurring during blastula embryo - A C. elegans life stage that occurs during the blastula embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the blastula embryo life stage + WB:WBPerson2987 @@ -28754,16 +28781,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the gastrulating embryo life stage - worm_development - WBls:0000814 + A C. elegans life stage that occurs during the gastrulating embryo life stage + worm_development + WBls:0000814 C. elegans life stage occurring during gastrulation - A C. elegans life stage that occurs during the gastrulating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the gastrulating embryo life stage + WB:WBPerson2987 @@ -28788,16 +28815,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the enclosing embryo life stage - worm_development - WBls:0000815 + A C. elegans life stage that occurs during the enclosing embryo life stage + worm_development + WBls:0000815 C. elegans life stage occurring during enclosing embryo - A C. elegans life stage that occurs during the enclosing embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the enclosing embryo life stage + WB:WBPerson2987 @@ -28822,16 +28849,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the adult life stage - worm_development - WBls:0000816 + A C. elegans life stage that occurs during the adult life stage + worm_development + WBls:0000816 C. elegans life stage occurring during adulthood - A C. elegans life stage that occurs during the adult life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the adult life stage + WB:WBPerson2987 @@ -28856,16 +28883,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the larval life stage - worm_development - WBls:0000817 + A C. elegans life stage that occurs during the larval life stage + worm_development + WBls:0000817 C. elegans life stage occurring during larval stage - A C. elegans life stage that occurs during the larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the larval life stage + WB:WBPerson2987 @@ -28890,16 +28917,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L1 larval life stage - worm_development - WBls:0000818 + A C. elegans life stage that occurs during the L1 larval life stage + worm_development + WBls:0000818 C. elegans life stage occurring during L1 larval stage - A C. elegans life stage that occurs during the L1 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L1 larval life stage + WB:WBPerson2987 @@ -28924,16 +28951,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L2 larval life stage - worm_development - WBls:0000819 + A C. elegans life stage that occurs during the L2 larval life stage + worm_development + WBls:0000819 C. elegans life stage occurring during L2 larval stage - A C. elegans life stage that occurs during the L2 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L2 larval life stage + WB:WBPerson2987 @@ -28958,16 +28985,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L3 larval life stage - worm_development - WBls:0000820 + A C. elegans life stage that occurs during the L3 larval life stage + worm_development + WBls:0000820 C. elegans life stage occurring during L3 larval stage - A C. elegans life stage that occurs during the L3 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L3 larval life stage + WB:WBPerson2987 @@ -28992,16 +29019,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L4 larval life stage - worm_development - WBls:0000821 + A C. elegans life stage that occurs during the L4 larval life stage + worm_development + WBls:0000821 C. elegans life stage occurring during L4 larval stage - A C. elegans life stage that occurs during the L4 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L4 larval life stage + WB:WBPerson2987 @@ -29010,17 +29037,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - worm_development - WBls:0000822 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + worm_development + WBls:0000822 C. elegans life stage by minutes post first cleavage - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - WB:WBPaper00000653 - WB:WBPerson2987 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + WB:WBPaper00000653 + WB:WBPerson2987 @@ -29029,16 +29056,16 @@ For example, A and B may be gene products and binding of B by A positively regul - C. elegans life stage classified by the number of cells in the organism. - worm_development - WBls:0000823 + C. elegans life stage classified by the number of cells in the organism. + worm_development + WBls:0000823 C. elegans life stage by number of cells - C. elegans life stage classified by the number of cells in the organism. - WB:WBPerson2987 + C. elegans life stage classified by the number of cells in the organism. + WB:WBPerson2987 @@ -29047,16 +29074,16 @@ For example, A and B may be gene products and binding of B by A positively regul - C. elegans life stage that occurs during a larval molt - worm_development - WBls:0000824 + C. elegans life stage that occurs during a larval molt + worm_development + WBls:0000824 C. elegans life stage occurring during larval molt - C. elegans life stage that occurs during a larval molt - WB:WBPerson2987 + C. elegans life stage that occurs during a larval molt + WB:WBPerson2987 @@ -29065,16 +29092,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A life stage of the nematode Caenorhabditis elegans - worm_development - WBls:0000825 + A life stage of the nematode Caenorhabditis elegans + worm_development + WBls:0000825 C. elegans life stage - A life stage of the nematode Caenorhabditis elegans - WB:WBPerson2987 + A life stage of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -29082,17 +29109,17 @@ For example, A and B may be gene products and binding of B by A positively regul - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - worm_development - WBls:0000826 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + worm_development + WBls:0000826 obsolete set of worm life stages true - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - WB:WBPerson2987 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -29108,17 +29135,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - worm_development - WBls:0000827 + 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. + worm_development + WBls:0000827 post dauer stage Ce - 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 + 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 @@ -29134,25 +29161,25 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PDL4 - worm_development - WBls:0000828 - "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)." + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PDL4 + worm_development + WBls:0000828 + "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)." post dauer L4 stage Ce - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -29162,17 +29189,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - worm_development - WBls:0000829 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + worm_development + WBls:0000829 post dauer adult stage Ce - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 @@ -29235,10 +29262,10 @@ For example, A and B may be gene products and binding of B by A positively regul - + - + @@ -29375,10 +29402,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29386,9 +29412,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29418,10 +29445,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29429,9 +29455,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29461,10 +29488,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29472,9 +29498,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29504,10 +29531,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29515,9 +29541,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29542,8 +29569,8 @@ For example, A and B may be gene products and binding of B by A positively regul true - 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 - infer input from direct reg + 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 + infer input from direct reg @@ -29672,8 +29699,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase true - 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' - involved in BP + 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' + involved in BP @@ -30578,5 +30605,5 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + diff --git a/wbls-simple.json b/wbls-simple.json index 16e03a4..48564fe 100644 --- a/wbls-simple.json +++ b/wbls-simple.json @@ -1,39344 +1,29141 @@ { - "graphs": [ - { - "edges": [ - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000062", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002087" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002086", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002131", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000825" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000006", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000007", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000008", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000009", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000011", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000012", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000025", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000028", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000032", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000036", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000073" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000039", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000056" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000057" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000046", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000052", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000064", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000065", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000066", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000067", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000069", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000070", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000071", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000072", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000074", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000101" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000704" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000077", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000079", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000080", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000082", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000084", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000086", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000087", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000088", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000090", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000094", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000095", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000100", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000001" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000059" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000076" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000102" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000105" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000741" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000106" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000664" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000679" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000111", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000112", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000113", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000114", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000115", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000116", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000117", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000118", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000119", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000120", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000121", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000122", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000123", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000124", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000125", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000126", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000127", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000128", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000129", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000130", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000131", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000132", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000133", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000134", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000135", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000136", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000137", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000138", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000139", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000140", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000141", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000142", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000143", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000144", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000145", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000146", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000147", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000148", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000149", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000150", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000151", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000152", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000153", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000154", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000155", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000156", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000157", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000158", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000159", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000160", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000161", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000162", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000163", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000164", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000165", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000166", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000167", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000168", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000169", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000170", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000171", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000172", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000173", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000174", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000175", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000176", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000177", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000178", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000179", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000180", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000181", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000182", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000183", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000184", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000185", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000186", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000187", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000188", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000189", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000190", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000191", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000192", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000193", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000194", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000195", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000196", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000197", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000198", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000199", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000200", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000201", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000202", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000203", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000204", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000205", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000206", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000207", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000208", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000209", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000210", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000211", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000212", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000213", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000214", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000215", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000216", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000217", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000218", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000219", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000220", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000221", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000222", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000223", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000224", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000225", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000226", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000227", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000228", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000229", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000230", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000231", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000232", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000233", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000234", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000235", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000236", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000237", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000238", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000239", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000240", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000241", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000242", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000243", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000244", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000245", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000246", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000247", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000248", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000249", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000250", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000251", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000252", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000253", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000254", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000255", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000256", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000257", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000258", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000259", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000260", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000261", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000262", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000263", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000264", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000265", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000266", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000267", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000268", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000269", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000270", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000271", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000272", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000273", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000274", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000275", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000276", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000277", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000278", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000279", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000280", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000281", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000282", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000283", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000284", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000285", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000286", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000287", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000288", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000289", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000290", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000291", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000292", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000293", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000294", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000295", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000296", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000297", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000298", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000299", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000300", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000301", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000302", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000303", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000304", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000305", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000306", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000307", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000308", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000309", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000310", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000311", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000312", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000313", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000314", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000315", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000316", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000317", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000318", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000319", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000320", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000321", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000322", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000323", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000324", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000325", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000326", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000327", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000328", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000329", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000330", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000331", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000332", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000333", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000334", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000335", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000336", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000337", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000338", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000339", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000340", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000341", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000342", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000343", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000344", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000345", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000346", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000347", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000348", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000349", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000350", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000351", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000352", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000353", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000354", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000355", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000356", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000357", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000358", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000359", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000360", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000361", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000362", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000363", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000364", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000365", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000366", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000367", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000368", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000369", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000370", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000371", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000372", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000373", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000374", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000375", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000376", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000377", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000378", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000379", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000380", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000381", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000382", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000383", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000384", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000385", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000386", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000387", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000388", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000389", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000390", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000391", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000392", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000393", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000394", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000395", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000396", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000397", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000398", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000399", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000400", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000401", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000402", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000403", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000404", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000405", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000406", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000407", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000408", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000409", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000410", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000411", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000412", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000413", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000414", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000415", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000416", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000417", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000418", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000419", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000420", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000421", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000422", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000423", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000424", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000425", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000426", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000427", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000428", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000429", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000430", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000431", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000432", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000433", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000434", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000435", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000436", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000437", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000438", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000439", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000440", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000441", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000442", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000443", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000444", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000445", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000446", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000447", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000448", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000449", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000450", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000451", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000452", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000453", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000454", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000455", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000456", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000457", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000458", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000459", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000460", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000461", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000462", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000463", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000464", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000465", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000466", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000467", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000468", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000469", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000470", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000471", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000472", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000473", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000474", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000475", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000476", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000477", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000478", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000479", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000480", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000481", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000482", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000483", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000484", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000485", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000486", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000487", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000488", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000489", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000490", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000491", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000492", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000493", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000494", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000495", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000496", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000497", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000498", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000499", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000500", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000501", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000502", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000503", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000504", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000505", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000506", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000507", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000508", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000509", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000510", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000511", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000512", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000513", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000514", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000515", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000516", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000517", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000518", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000519", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000520", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000521", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000522", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000523", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000524", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000525", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000526", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000527", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000528", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000529", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000530", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000531", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000532", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000533", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000534", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000535", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000536", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000537", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000538", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000539", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000540", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000541", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000542", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000543", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000544", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000545", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000546", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000547", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000548", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000549", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000550", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000551", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000552", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000553", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000554", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000555", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000556", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000557", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000558", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000559", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000560", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000561", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000562", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000563", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000564", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000565", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000566", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000567", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000568", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000569", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000570", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000571", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000572", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000573", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000574", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000575", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000576", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000577", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000578", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000579", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000580", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000581", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000582", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000583", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000584", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000585", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000586", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000587", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000588", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000589", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000590", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000591", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000592", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000593", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000594", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000595", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000596", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000597", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000598", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000599", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000600", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000601", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000602", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000603", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000604", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000605", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000606", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000607", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000608", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000609", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000610", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000611", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000612", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000613", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000614", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000615", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000616", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000617", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000618", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000619", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000620", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000621", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000622", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000623", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000624", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000625", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000626", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000627", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000628", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000629", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000630", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000631", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000632", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000633", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000634", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000635", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000636", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000637", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000638", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000639", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000640", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000641", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000642", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000643", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000644", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000645", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000646", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000647", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000648", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000649", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000650", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000651", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000652", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000653", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000654", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000655", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000656", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000657", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000658", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000659", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000660", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000661", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000663", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000110" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000667" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000668" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000669", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000670", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000671", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000672", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000673", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000675", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000795" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000729" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000742" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000683", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000684", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000685", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000686", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000687", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000688", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000689", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000690", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000691", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000693", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000694", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000695", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000696", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000697", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000698", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000699", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000700", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000701", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000702", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000705" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000711" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000712" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000708", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000724" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000706" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000707" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000708" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000718" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000719" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000720" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000713" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000716" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000723", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000724", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000727", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000728", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000730", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000731", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000732", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000734" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000734", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000735", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000738" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000723" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000726" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000797", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000798", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000799", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000800", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000801", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000805" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000811" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000812" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000816" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000817" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000806" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000807" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000808" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000809" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000810" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000813" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000814" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000815" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000818" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000819" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000820" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000821" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000824" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000819", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000820", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000002" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000669" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000803" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000804" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000822" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000823" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" - }, - { - "obj": "http://www.w3.org/2002/07/owl#Thing", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000075" - }, - { - "obj": "http://www.w3.org/2002/07/owl#Thing", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000078" - }, - { - "obj": "http://www.w3.org/2002/07/owl#Thing", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000662" - }, - { - "obj": "http://www.w3.org/2002/07/owl#Thing", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000721" - }, - { - "obj": "http://www.w3.org/2002/07/owl#Thing", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000722" - }, - { - "obj": "http://www.w3.org/2002/07/owl#Thing", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000826" - } - ], - "id": "http://purl.obolibrary.org/obo/wbls/wbls-simple.json", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000700", - "val": "http://purl.obolibrary.org/obo/WBls_0000075" - }, - { - "pred": "http://purl.org/dc/elements/1.1/description", - "val": "Ontology about the development and life stages of the C. elegans" - }, - { - "pred": "http://purl.org/dc/elements/1.1/title", - "val": "C. elegans Development Ontology" - }, - { - "pred": "http://purl.org/dc/terms/license", - "val": "http://creativecommons.org/licenses/by/4.0/" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", - "val": "OBO-Edit 2.2-rc1" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#date", - "val": "15:11:2017 12:24" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#default-namespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", - "val": "1.2" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#saved-by", - "val": "chris-grove" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Version: 1.04" - }, - { - "pred": "http://www.w3.org/2002/07/owl#versionInfo", - "val": "2023-01-03" - } - ], - "version": "http://purl.obolibrary.org/obo/wbls/releases/2023-01-03/wbls-simple.json" - }, - "nodes": [ - { - "id": "http://purl.obolibrary.org/obo/BFO_0000050", - "lbl": "part_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "is part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my brain is part of my body (continuant parthood, two material entities)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this day is part of this year (occurrent parthood)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "part_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000002" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000020" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000031" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "part_of" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Submissions:PartOf" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://www.obofoundry.org/ro/#OBO_REL:part_of" - } - ], - "definition": { - "val": "a core relation that holds between a part and its whole" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_gp2term", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ], - "xrefs": [ - { - "val": "BFO:0000050" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000062", - "lbl": "preceded_by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "preceded by" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is preceded by" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "preceded_by" - }, - { - "pred": "http://purl.org/dc/elements/1.1/source", - "val": "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "preceded_by" - } - ], - "definition": { - "val": "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ], - "xrefs": [ - { - "val": "BFO:0000062" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002086", - "lbl": "ends after", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - } - ], - "comments": [ - "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)" - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002087", - "lbl": "starts_at_end_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "starts_at_end_of" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "starts_at_end_of" - } - ], - "comments": [ - "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)" - ], - "xrefs": [ - { - "val": "RO:0002087" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002131", - "lbl": "overlaps", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000424", - "val": "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "x overlaps y if and only if there exists some z such that x has part z and z part of y" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco", - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000001", - "lbl": "free-living nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:42:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely outside of a host organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000002", - "lbl": "all stages Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "All C. elegans development stages, including embryo, larva and adult stage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000003", - "lbl": "embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000004", - "lbl": "proliferating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "proliferating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000005", - "lbl": "blastula embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "blastula embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000006", - "lbl": "1-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-cell embryo" - }, - { - "pred": "hasExactSynonym", - "val": "fertilized egg", - "xrefs": [ - "WB:dr" - ] - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000007", - "lbl": "2-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000008", - "lbl": "4-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000009", - "lbl": "28-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000010", - "lbl": "gastrulating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "gastrulating embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000011", - "lbl": "51-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000012", - "lbl": "88-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000013", - "lbl": "enclosing embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "enclosing embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000014", - "lbl": "late cleavage stage embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late cleavage stage embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000015", - "lbl": "elongating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "elongating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "mid embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000016", - "lbl": "bean embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "bean embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000017", - "lbl": "comma embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "comma embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000018", - "lbl": "1.5-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1.5-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000019", - "lbl": "2-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000020", - "lbl": "3-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000021", - "lbl": "fully-elongated embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "fully-elongated embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "morphogenetic stage" - }, - { - "pred": "hasExactSynonym", - "val": "pre-hatched embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000022", - "lbl": "postembryonic Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000023", - "lbl": "larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000024", - "lbl": "L1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000025", - "lbl": "L1-L2 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000026", - "lbl": "L1-L2 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000027", - "lbl": "L2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000028", - "lbl": "L2-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000029", - "lbl": "L2-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000030", - "lbl": "L2d-dauer lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000031", - "lbl": "L2d-dauer molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000032", - "lbl": "dauer larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A third stage larva specialized for dispersal and long term survival.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "dauer larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000033", - "lbl": "postdauer-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000034", - "lbl": "postdauer-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000035", - "lbl": "L3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000036", - "lbl": "L3-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000037", - "lbl": "L3-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000038", - "lbl": "L4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000039", - "lbl": "L4-adult lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000040", - "lbl": "L4-adult molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000041", - "lbl": "adult Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000042", - "lbl": "L1-L2 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000043", - "lbl": "L1-L2d molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000044", - "lbl": "L1-L2d lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000045", - "lbl": "L1-L2d ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000046", - "lbl": "L2d larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000047", - "lbl": "L2-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000048", - "lbl": "L2d-dauer ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000049", - "lbl": "L3-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000050", - "lbl": "L4-adult ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000051", - "lbl": "postdauer-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000052", - "lbl": "post dauer L3 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", - "xrefs": [ - "PMID:27417559", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL3" - }, - { - "pred": "hasExactSynonym", - "val": "dauer exit" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000053", - "lbl": "L2d-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000054", - "lbl": "L2d-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000055", - "lbl": "L2d-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000056", - "lbl": "adult male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an male animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000057", - "lbl": "adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000058", - "lbl": "pre-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "pre-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000059", - "lbl": "parasitic nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:44:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000060", - "lbl": "reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000061", - "lbl": "oocyte-laying stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "oocyte-laying stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000062", - "lbl": "post-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000063", - "lbl": "newly molted young adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 0-24 hours after L4-adult molt.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "newly molted young adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000064", - "lbl": "1-day post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-day post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000065", - "lbl": "2-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000066", - "lbl": "3-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000067", - "lbl": "4-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000068", - "lbl": "5-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000069", - "lbl": "4-7 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-7 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000070", - "lbl": "7-10 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-10 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000071", - "lbl": "8-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000072", - "lbl": "12-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000073", - "lbl": "L4 larva male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000074", - "lbl": "11-15 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-22T14:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000075", - "lbl": "worm life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of a worm", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000076", - "lbl": "Strongyloides life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:49:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Strongyloides developmental stage, including free-living and parasitic stages.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages Strongyloides" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000077", - "lbl": "Brugia sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000662" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "sheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia immature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "immature microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000079", - "lbl": "Brugia L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1" - }, - { - "pred": "hasExactSynonym", - "val": "L1 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000080", - "lbl": "Brugia L2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:30:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2" - }, - { - "pred": "hasExactSynonym", - "val": "L2 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000081", - "lbl": "Brugia L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3" - }, - { - "pred": "hasExactSynonym", - "val": "L3 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000082", - "lbl": "Brugia L4", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:38Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4" - }, - { - "pred": "hasExactSynonym", - "val": "L4 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000083", - "lbl": "Brugia adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:32:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000084", - "lbl": "14-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:15:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "E-cell has divided into Ea and Ep. Contains 14 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000085", - "lbl": "24-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:23:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fourth cleavage of the AB lineage. Contains 24 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000086", - "lbl": "44-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:25:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fifth cleavage of the AB lineage. Contains 44 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000087", - "lbl": "68-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:26:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Sixth cleavage of the AB lineage. Contains 68 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000088", - "lbl": "86-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:27:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Seventh cleavage of the AB lineage. Contains 86 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000089", - "lbl": "190-cells embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-15T13:19:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "P4 and M cells have finished migrating. Contains 190 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190-cells embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000090", - "lbl": "96-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-16T15:37:30Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000091", - "lbl": "Brugia life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T03:18:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Brugia developmental stage, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000092", - "lbl": "Brugia embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:48:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - }, - { - "pred": "hasExactSynonym", - "val": "embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000093", - "lbl": "Brugia postembryonic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:50:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic stage" - }, - { - "pred": "hasExactSynonym", - "val": "postembryonic Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000094", - "lbl": "Brugia early embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:55:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "early embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000095", - "lbl": "Brugia middle embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:59:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Proliferates from 100 cells to Lima bean stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "middle embryo" - }, - { - "pred": "hasExactSynonym", - "val": "middle embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000096", - "lbl": "Brugia late embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:00:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "From Lima bean to hatching.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000097", - "lbl": "Brugia larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:12:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000098", - "lbl": "Brugia L3i", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:23:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3i" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia vector-derived L3" - }, - { - "pred": "hasExactSynonym", - "val": "vector-derived L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "iL3" - }, - { - "pred": "hasRelatedSynonym", - "val": "infective L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000099", - "lbl": "Brugia post-infection L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:24:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-infection L3" - }, - { - "pred": "hasExactSynonym", - "val": "post-infection L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "piL3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000100", - "lbl": "Brugia young adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:37:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "young adult" - }, - { - "pred": "hasExactSynonym", - "val": "young adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000101", - "lbl": "Nematode life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:13:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in a nematode, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000102", - "lbl": "nematode embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "embryo nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode egg stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000103", - "lbl": "postembryonic nematode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:39Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a nematode that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000104", - "lbl": "nematode adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:18:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L5" - }, - { - "pred": "hasExactSynonym", - "val": "adult nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000105", - "lbl": "nematode larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:19:27Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins after hatching and ends when the nematode becomes adult.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000106", - "lbl": "L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000107", - "lbl": "L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L2 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000108", - "lbl": "L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:21:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L3 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000109", - "lbl": "L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:22:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L4 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000110", - "lbl": "sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:23:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000111", - "lbl": "16-18 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16-18 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000112", - "lbl": "1 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000113", - "lbl": "2 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000114", - "lbl": "3 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000115", - "lbl": "4 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000116", - "lbl": "5 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000117", - "lbl": "6 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000118", - "lbl": "7 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000119", - "lbl": "8 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000120", - "lbl": "9 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000121", - "lbl": "10 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000122", - "lbl": "11 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000123", - "lbl": "12 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000124", - "lbl": "13 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000125", - "lbl": "14 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000126", - "lbl": "15 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000127", - "lbl": "16 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000128", - "lbl": "17 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "17 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000129", - "lbl": "18 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "18 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000130", - "lbl": "19 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "19 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000131", - "lbl": "20 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000132", - "lbl": "21 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "21 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000133", - "lbl": "22 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "22 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000134", - "lbl": "23 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "23 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000135", - "lbl": "24 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000136", - "lbl": "25 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "25 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000137", - "lbl": "26 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "26 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000138", - "lbl": "27 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "27 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000139", - "lbl": "28 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000140", - "lbl": "29 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "29 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000141", - "lbl": "30 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "30 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000142", - "lbl": "31 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "31 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000143", - "lbl": "32 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "32 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000144", - "lbl": "33 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "33 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000145", - "lbl": "34 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "34 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000146", - "lbl": "35 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "35 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000147", - "lbl": "36 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "36 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000148", - "lbl": "37 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "37 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000149", - "lbl": "38 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "38 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000150", - "lbl": "39 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "39 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000151", - "lbl": "40 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "40 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000152", - "lbl": "41 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "41 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000153", - "lbl": "42 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "42 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000154", - "lbl": "43 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "43 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000155", - "lbl": "44 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000156", - "lbl": "45 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "45 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000157", - "lbl": "46 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "46 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000158", - "lbl": "47 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "47 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000159", - "lbl": "48 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "48 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000160", - "lbl": "49 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "49 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000161", - "lbl": "50 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "50 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000162", - "lbl": "51 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000163", - "lbl": "52 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "52 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000164", - "lbl": "53 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "53 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000165", - "lbl": "54 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "54 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000166", - "lbl": "55 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "55 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000167", - "lbl": "56 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "56 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000168", - "lbl": "57 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "57 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000169", - "lbl": "58 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "58 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000170", - "lbl": "59 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "59 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000171", - "lbl": "60 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "60 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000172", - "lbl": "61 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "61 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000173", - "lbl": "62 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "62 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000174", - "lbl": "63 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "63 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000175", - "lbl": "64 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "64 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000176", - "lbl": "65 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "65 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000177", - "lbl": "66 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "66 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000178", - "lbl": "67 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "67 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000179", - "lbl": "68 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000180", - "lbl": "69 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "69 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000181", - "lbl": "70 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "70 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000182", - "lbl": "71 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "71 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000183", - "lbl": "72 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "72 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000184", - "lbl": "73 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "73 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000185", - "lbl": "74 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "74 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000186", - "lbl": "75 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "75 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000187", - "lbl": "76 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "76 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000188", - "lbl": "77 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "77 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000189", - "lbl": "78 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "78 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000190", - "lbl": "79 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "79 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000191", - "lbl": "80 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "80 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000192", - "lbl": "81 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "81 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000193", - "lbl": "82 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "82 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000194", - "lbl": "83 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "83 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000195", - "lbl": "84 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "84 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000196", - "lbl": "85 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "85 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000197", - "lbl": "86 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000198", - "lbl": "87 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "87 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000199", - "lbl": "88 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000200", - "lbl": "89 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "89 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000201", - "lbl": "90 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "90 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000202", - "lbl": "91 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "91 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000203", - "lbl": "92 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "92 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000204", - "lbl": "93 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "93 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000205", - "lbl": "94 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "94 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000206", - "lbl": "95 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "95 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000207", - "lbl": "96 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000208", - "lbl": "97 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "97 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000209", - "lbl": "98 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "98 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000210", - "lbl": "99 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "99 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000211", - "lbl": "100 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "100 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000212", - "lbl": "101 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "101 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000213", - "lbl": "102 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "102 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000214", - "lbl": "103 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "103 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000215", - "lbl": "104 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "104 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000216", - "lbl": "105 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "105 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000217", - "lbl": "106 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "106 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000218", - "lbl": "107 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "107 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000219", - "lbl": "108 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "108 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000220", - "lbl": "109 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "109 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000221", - "lbl": "110 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "110 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000222", - "lbl": "111 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "111 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000223", - "lbl": "112 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "112 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000224", - "lbl": "113 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "113 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000225", - "lbl": "114 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "114 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000226", - "lbl": "115 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "115 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000227", - "lbl": "116 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "116 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000228", - "lbl": "117 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "117 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000229", - "lbl": "118 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "118 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000230", - "lbl": "119 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "119 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000231", - "lbl": "120 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "120 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000232", - "lbl": "121 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "121 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000233", - "lbl": "122 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "122 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000234", - "lbl": "123 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "123 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000235", - "lbl": "124 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "124 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000236", - "lbl": "125 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "125 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000237", - "lbl": "126 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "126 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000238", - "lbl": "127 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "127 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000239", - "lbl": "128 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "128 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000240", - "lbl": "129 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "129 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000241", - "lbl": "130 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "130 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000242", - "lbl": "131 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "131 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000243", - "lbl": "132 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "132 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000244", - "lbl": "133 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "133 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000245", - "lbl": "134 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "134 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000246", - "lbl": "135 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "135 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000247", - "lbl": "136 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "136 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000248", - "lbl": "137 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "137 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000249", - "lbl": "138 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "138 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000250", - "lbl": "139 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "139 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000251", - "lbl": "140 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "140 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000252", - "lbl": "141 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "141 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000253", - "lbl": "142 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "142 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000254", - "lbl": "143 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "143 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000255", - "lbl": "144 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "144 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000256", - "lbl": "145 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "145 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000257", - "lbl": "146 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "146 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000258", - "lbl": "147 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "147 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000259", - "lbl": "148 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "148 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000260", - "lbl": "149 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "149 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000261", - "lbl": "150 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "150 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000262", - "lbl": "151 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "151 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000263", - "lbl": "152 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "152 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000264", - "lbl": "153 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "153 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000265", - "lbl": "154 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "154 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000266", - "lbl": "155 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "155 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000267", - "lbl": "156 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "156 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000268", - "lbl": "157 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "157 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000269", - "lbl": "158 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "158 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000270", - "lbl": "159 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "159 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000271", - "lbl": "160 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "160 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000272", - "lbl": "161 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "161 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000273", - "lbl": "162 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "162 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000274", - "lbl": "163 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "163 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000275", - "lbl": "164 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "164 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000276", - "lbl": "165 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "165 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000277", - "lbl": "166 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "166 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000278", - "lbl": "167 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "167 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000279", - "lbl": "168 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "168 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000280", - "lbl": "169 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "169 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000281", - "lbl": "170 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "170 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000282", - "lbl": "171 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "171 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000283", - "lbl": "172 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "172 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000284", - "lbl": "173 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "173 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000285", - "lbl": "174 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "174 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000286", - "lbl": "175 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "175 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000287", - "lbl": "176 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "176 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000288", - "lbl": "177 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "177 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000289", - "lbl": "178 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "178 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000290", - "lbl": "179 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "179 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000291", - "lbl": "180 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "180 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000292", - "lbl": "181 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "181 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000293", - "lbl": "182 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "182 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000294", - "lbl": "183 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "183 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000295", - "lbl": "184 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "184 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000296", - "lbl": "185 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "185 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000297", - "lbl": "186 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "186 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000298", - "lbl": "187 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "187 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000299", - "lbl": "188 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "188 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000300", - "lbl": "189 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "189 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000301", - "lbl": "190 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000302", - "lbl": "191 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "191 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000303", - "lbl": "192 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "192 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000304", - "lbl": "193 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "193 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000305", - "lbl": "194 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "194 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000306", - "lbl": "195 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "195 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000307", - "lbl": "196 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "196 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000308", - "lbl": "197 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "197 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000309", - "lbl": "198 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "198 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000310", - "lbl": "199 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "199 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000311", - "lbl": "200 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "200 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000312", - "lbl": "201 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "201 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000313", - "lbl": "202 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "202 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000314", - "lbl": "203 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "203 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000315", - "lbl": "204 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "204 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000316", - "lbl": "205 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "205 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000317", - "lbl": "206 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "206 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000318", - "lbl": "207 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "207 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000319", - "lbl": "208 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "208 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000320", - "lbl": "209 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "209 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000321", - "lbl": "210 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "210 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000322", - "lbl": "211 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "211 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000323", - "lbl": "212 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "212 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000324", - "lbl": "213 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "213 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000325", - "lbl": "214 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "214 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000326", - "lbl": "215 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "215 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000327", - "lbl": "216 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "216 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000328", - "lbl": "217 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "217 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000329", - "lbl": "218 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "218 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000330", - "lbl": "219 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "219 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000331", - "lbl": "220 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "220 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000332", - "lbl": "221 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "221 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000333", - "lbl": "222 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "222 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000334", - "lbl": "223 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "223 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000335", - "lbl": "224 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "224 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000336", - "lbl": "225 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "225 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000337", - "lbl": "226 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "226 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000338", - "lbl": "227 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "227 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000339", - "lbl": "228 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "228 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000340", - "lbl": "229 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "229 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000341", - "lbl": "230 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "230 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000342", - "lbl": "231 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "231 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000343", - "lbl": "232 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "232 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000344", - "lbl": "233 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "233 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000345", - "lbl": "234 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "234 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000346", - "lbl": "235 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "235 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000347", - "lbl": "236 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "236 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000348", - "lbl": "237 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "237 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000349", - "lbl": "238 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "238 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000350", - "lbl": "239 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "239 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000351", - "lbl": "240 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "240 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000352", - "lbl": "241 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "241 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000353", - "lbl": "242 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "242 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000354", - "lbl": "243 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "243 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000355", - "lbl": "244 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "244 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000356", - "lbl": "245 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "245 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000357", - "lbl": "246 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "246 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000358", - "lbl": "247 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "247 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000359", - "lbl": "248 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "248 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000360", - "lbl": "249 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "249 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000361", - "lbl": "250 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "250 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000362", - "lbl": "251 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "251 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000363", - "lbl": "252 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "252 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000364", - "lbl": "253 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "253 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000365", - "lbl": "254 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "254 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000366", - "lbl": "255 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "255 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000367", - "lbl": "256 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "256 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000368", - "lbl": "257 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "257 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000369", - "lbl": "258 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "258 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000370", - "lbl": "259 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "259 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000371", - "lbl": "260 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "260 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000372", - "lbl": "261 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "261 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000373", - "lbl": "262 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "262 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000374", - "lbl": "263 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "263 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000375", - "lbl": "264 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "264 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000376", - "lbl": "265 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "265 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000377", - "lbl": "266 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "266 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000378", - "lbl": "267 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "267 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000379", - "lbl": "268 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "268 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000380", - "lbl": "269 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "269 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000381", - "lbl": "270 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "270 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000382", - "lbl": "271 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "271 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000383", - "lbl": "272 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "272 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000384", - "lbl": "273 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "273 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000385", - "lbl": "274 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "274 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000386", - "lbl": "275 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "275 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000387", - "lbl": "276 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "276 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000388", - "lbl": "277 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "277 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000389", - "lbl": "278 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "278 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000390", - "lbl": "279 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "279 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000391", - "lbl": "280 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "280 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000392", - "lbl": "281 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "281 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000393", - "lbl": "282 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "282 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000394", - "lbl": "283 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "283 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000395", - "lbl": "284 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "284 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000396", - "lbl": "285 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "285 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000397", - "lbl": "286 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "286 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000398", - "lbl": "287 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "287 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000399", - "lbl": "288 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "288 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000400", - "lbl": "289 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "289 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000401", - "lbl": "290 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "290 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000402", - "lbl": "291 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "291 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000403", - "lbl": "292 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "292 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000404", - "lbl": "293 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "293 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000405", - "lbl": "294 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "294 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000406", - "lbl": "295 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "295 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000407", - "lbl": "296 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "296 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000408", - "lbl": "297 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "297 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000409", - "lbl": "298 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "298 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000410", - "lbl": "299 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "299 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000411", - "lbl": "300 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "300 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000412", - "lbl": "301 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "301 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000413", - "lbl": "302 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "302 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000414", - "lbl": "303 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "303 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000415", - "lbl": "304 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "304 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000416", - "lbl": "305 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "305 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000417", - "lbl": "306 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "306 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000418", - "lbl": "307 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "307 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000419", - "lbl": "308 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "308 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000420", - "lbl": "309 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "309 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000421", - "lbl": "310 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "310 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000422", - "lbl": "311 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "311 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000423", - "lbl": "312 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "312 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000424", - "lbl": "313 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "313 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000425", - "lbl": "314 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "314 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000426", - "lbl": "315 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "315 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000427", - "lbl": "316 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "316 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000428", - "lbl": "317 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "317 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000429", - "lbl": "318 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "318 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000430", - "lbl": "319 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "319 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000431", - "lbl": "320 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "320 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000432", - "lbl": "321 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "321 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000433", - "lbl": "322 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "322 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000434", - "lbl": "323 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "323 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000435", - "lbl": "324 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "324 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000436", - "lbl": "325 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "325 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000437", - "lbl": "326 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "326 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000438", - "lbl": "327 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "327 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000439", - "lbl": "328 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "328 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000440", - "lbl": "329 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "329 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000441", - "lbl": "330 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "330 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000442", - "lbl": "331 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "331 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000443", - "lbl": "332 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "332 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000444", - "lbl": "333 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "333 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000445", - "lbl": "334 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "334 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000446", - "lbl": "335 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "335 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000447", - "lbl": "336 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "336 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000448", - "lbl": "337 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "337 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000449", - "lbl": "338 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "338 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000450", - "lbl": "339 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "339 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000451", - "lbl": "340 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "340 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000452", - "lbl": "341 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "341 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000453", - "lbl": "342 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "342 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000454", - "lbl": "343 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "343 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000455", - "lbl": "344 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "344 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000456", - "lbl": "345 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "345 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000457", - "lbl": "346 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "346 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000458", - "lbl": "347 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "347 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000459", - "lbl": "348 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "348 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000460", - "lbl": "349 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "349 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000461", - "lbl": "350 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "350 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000462", - "lbl": "351 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "351 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000463", - "lbl": "352 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "352 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000464", - "lbl": "353 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "353 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000465", - "lbl": "354 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "354 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000466", - "lbl": "355 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "355 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000467", - "lbl": "356 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "356 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000468", - "lbl": "357 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "357 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000469", - "lbl": "358 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "358 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000470", - "lbl": "359 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "359 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000471", - "lbl": "360 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "360 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000472", - "lbl": "361 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "361 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000473", - "lbl": "362 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "362 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000474", - "lbl": "363 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "363 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000475", - "lbl": "364 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "364 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000476", - "lbl": "365 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "365 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000477", - "lbl": "366 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "366 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000478", - "lbl": "367 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "367 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000479", - "lbl": "368 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "368 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000480", - "lbl": "369 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "369 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000481", - "lbl": "370 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "370 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000482", - "lbl": "371 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "371 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000483", - "lbl": "372 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "372 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000484", - "lbl": "373 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "373 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000485", - "lbl": "374 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "374 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000486", - "lbl": "375 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "375 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000487", - "lbl": "376 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "376 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000488", - "lbl": "377 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "377 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000489", - "lbl": "378 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "378 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000490", - "lbl": "379 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "379 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000491", - "lbl": "380 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "380 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000492", - "lbl": "381 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "381 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000493", - "lbl": "382 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "382 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000494", - "lbl": "383 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "383 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000495", - "lbl": "384 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "384 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000496", - "lbl": "385 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "385 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000497", - "lbl": "386 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "386 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000498", - "lbl": "387 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "387 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000499", - "lbl": "388 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "388 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000500", - "lbl": "389 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "389 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000501", - "lbl": "390 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "390 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000502", - "lbl": "391 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "391 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000503", - "lbl": "392 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "392 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000504", - "lbl": "393 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "393 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000505", - "lbl": "394 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "394 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000506", - "lbl": "395 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "395 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000507", - "lbl": "396 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "396 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000508", - "lbl": "397 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "397 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000509", - "lbl": "398 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "398 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000510", - "lbl": "399 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "399 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000511", - "lbl": "400 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "400 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000512", - "lbl": "401 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "401 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000513", - "lbl": "402 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "402 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000514", - "lbl": "403 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "403 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000515", - "lbl": "404 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "404 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000516", - "lbl": "405 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "405 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000517", - "lbl": "406 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "406 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000518", - "lbl": "407 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "407 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000519", - "lbl": "408 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "408 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000520", - "lbl": "409 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "409 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000521", - "lbl": "410 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "410 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000522", - "lbl": "411 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "411 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000523", - "lbl": "412 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "412 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000524", - "lbl": "413 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "413 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000525", - "lbl": "414 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "414 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000526", - "lbl": "415 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "415 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000527", - "lbl": "416 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "416 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000528", - "lbl": "417 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "417 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000529", - "lbl": "418 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "418 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000530", - "lbl": "419 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "419 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000531", - "lbl": "420 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "420 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000532", - "lbl": "421 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "421 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000533", - "lbl": "422 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "422 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000534", - "lbl": "423 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "423 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000535", - "lbl": "424 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "424 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000536", - "lbl": "425 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "425 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000537", - "lbl": "426 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "426 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000538", - "lbl": "427 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "427 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000539", - "lbl": "428 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "428 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000540", - "lbl": "429 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "429 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000541", - "lbl": "430 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "430 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000542", - "lbl": "431 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "431 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000543", - "lbl": "432 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "432 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000544", - "lbl": "433 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "433 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000545", - "lbl": "434 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "434 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000546", - "lbl": "435 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "435 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000547", - "lbl": "436 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "436 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000548", - "lbl": "437 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "437 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000549", - "lbl": "438 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "438 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000550", - "lbl": "439 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "439 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000551", - "lbl": "440 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "440 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000552", - "lbl": "441 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "441 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000553", - "lbl": "442 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "442 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000554", - "lbl": "443 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "443 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000555", - "lbl": "444 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "444 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000556", - "lbl": "445 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "445 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000557", - "lbl": "446 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "446 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000558", - "lbl": "447 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "447 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000559", - "lbl": "448 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "448 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000560", - "lbl": "449 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "449 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000561", - "lbl": "450 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "450 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000562", - "lbl": "451 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "451 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000563", - "lbl": "452 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "452 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000564", - "lbl": "453 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "453 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000565", - "lbl": "454 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "454 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000566", - "lbl": "455 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "455 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000567", - "lbl": "456 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "456 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000568", - "lbl": "457 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "457 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000569", - "lbl": "458 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "458 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000570", - "lbl": "459 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "459 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000571", - "lbl": "460 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "460 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000572", - "lbl": "461 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "461 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000573", - "lbl": "462 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "462 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000574", - "lbl": "463 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "463 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000575", - "lbl": "464 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "464 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000576", - "lbl": "465 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "465 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000577", - "lbl": "466 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "466 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000578", - "lbl": "467 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "467 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000579", - "lbl": "468 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "468 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000580", - "lbl": "469 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "469 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000581", - "lbl": "470 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "470 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000582", - "lbl": "471 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "471 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000583", - "lbl": "472 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "472 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000584", - "lbl": "473 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "473 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000585", - "lbl": "474 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "474 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000586", - "lbl": "475 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "475 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000587", - "lbl": "476 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "476 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000588", - "lbl": "477 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "477 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000589", - "lbl": "478 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "478 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000590", - "lbl": "479 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "479 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000591", - "lbl": "480 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "480 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000592", - "lbl": "481 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "481 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000593", - "lbl": "482 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "482 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000594", - "lbl": "483 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "483 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000595", - "lbl": "484 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "484 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000596", - "lbl": "485 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "485 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000597", - "lbl": "486 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "486 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000598", - "lbl": "487 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "487 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000599", - "lbl": "488 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "488 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000600", - "lbl": "489 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "489 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000601", - "lbl": "490 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "490 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000602", - "lbl": "491 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "491 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000603", - "lbl": "492 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "492 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000604", - "lbl": "493 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "493 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000605", - "lbl": "494 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "494 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000606", - "lbl": "495 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "495 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000607", - "lbl": "496 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "496 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000608", - "lbl": "497 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "497 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000609", - "lbl": "498 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "498 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000610", - "lbl": "499 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "499 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000611", - "lbl": "500 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "500 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000612", - "lbl": "501 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "501 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000613", - "lbl": "502 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "502 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000614", - "lbl": "503 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "503 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000615", - "lbl": "504 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "504 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000616", - "lbl": "505 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "505 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000617", - "lbl": "506 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "506 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000618", - "lbl": "507 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "507 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000619", - "lbl": "508 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "508 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000620", - "lbl": "509 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "509 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000621", - "lbl": "510 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "510 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000622", - "lbl": "511 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "511 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000623", - "lbl": "512 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "512 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000624", - "lbl": "513 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "513 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000625", - "lbl": "514 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "514 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000626", - "lbl": "515 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "515 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000627", - "lbl": "516 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "516 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000628", - "lbl": "517 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "517 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000629", - "lbl": "518 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "518 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000630", - "lbl": "519 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "519 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000631", - "lbl": "520 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "520 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000632", - "lbl": "521 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "521 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000633", - "lbl": "522 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "522 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000634", - "lbl": "523 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "523 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000635", - "lbl": "524 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "524 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000636", - "lbl": "525 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "525 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000637", - "lbl": "526 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "526 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000638", - "lbl": "527 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "527 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000639", - "lbl": "528 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "528 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000640", - "lbl": "529 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "529 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000641", - "lbl": "530 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "530 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000642", - "lbl": "531 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "531 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000643", - "lbl": "532 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "532 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000644", - "lbl": "533 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "533 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000645", - "lbl": "534 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "534 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000646", - "lbl": "535 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "535 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000647", - "lbl": "536 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "536 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000648", - "lbl": "537 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "537 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000649", - "lbl": "538 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "538 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000650", - "lbl": "539 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "539 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000651", - "lbl": "540 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "540 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000652", - "lbl": "541 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "541 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000653", - "lbl": "542 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "542 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000654", - "lbl": "543 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "543 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000655", - "lbl": "544 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "544 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000656", - "lbl": "545 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "545 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000657", - "lbl": "546 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "546 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000658", - "lbl": "547 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "547 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000659", - "lbl": "548 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "548 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000660", - "lbl": "549 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "549 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000661", - "lbl": "550 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "550 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000663", - "lbl": "Brugia unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-10T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000078" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unsheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia mature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "mature microfilaria Bma" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000664", - "lbl": "microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." - ], - "definition": { - "val": "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000665", - "lbl": "Brugia microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:25:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000666", - "lbl": "unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:50:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000667", - "lbl": "nodular microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found in nodules and ulcers.", - "xrefs": [ - "PMID:1796232", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae" - }, - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000668", - "lbl": "skin microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found subcutaneously", - "xrefs": [ - "PMID:20772951", - "PMID:7797912", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "skin microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000669", - "lbl": "unfertilized egg Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-26T11:49:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unfertilized egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000670", - "lbl": "6-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000671", - "lbl": "7-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000672", - "lbl": "8-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000673", - "lbl": "9-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000674", - "lbl": "10-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000675", - "lbl": "15-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000676", - "lbl": "20-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000677", - "lbl": "Strongyloides free-living stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:51:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000678", - "lbl": "Strongyloides parasitic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:52:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000679", - "lbl": "nematode infective stage larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:21:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Host organism here refers to the main host organism rather than intermediate hosts." - ], - "definition": { - "val": "Larval stage that is capable of infecting a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasNarrowSynonym", - "val": "infective larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000680", - "lbl": "Strongyloides infective L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:27:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "infective L3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides iL3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides infective stage larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000681", - "lbl": "Strongyloides parasitic female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:36:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic female" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000682", - "lbl": "Strongyloides free-living adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:48:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living adult" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides free-living L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000683", - "lbl": "L4.0 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:03:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.0 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000684", - "lbl": "L4.1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:06:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000685", - "lbl": "L4.2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:09:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000686", - "lbl": "L4.3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:10:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000687", - "lbl": "L4.4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:11:12Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000688", - "lbl": "L4.5 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:13:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.5 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000689", - "lbl": "L4.6 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:15:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.6 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000690", - "lbl": "L4.7 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:16:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.7 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000691", - "lbl": "L4.8 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:18:02Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.8 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000692", - "lbl": "L4.9 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:20:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.9 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000693", - "lbl": "560 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T09:27:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "560 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000694", - "lbl": "570 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T10:07:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "570 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000695", - "lbl": "640 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:08:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "640 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000696", - "lbl": "650 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:11:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "650 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000697", - "lbl": "660 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:13:05Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "660 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000698", - "lbl": "720 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:16:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "720 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000699", - "lbl": "770 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:18:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "770 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000700", - "lbl": "780 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:23:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "780 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000701", - "lbl": "820 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:25:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "820 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000702", - "lbl": "830 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:28:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "830 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000703", - "lbl": "850 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:30:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "850 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000704", - "lbl": "Platyhelminthes life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:14:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in Platyhelminthes (flatworms).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "Platyhelminthes developmental stage" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000705", - "lbl": "Platyhelminthes egg", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:17:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "egg" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000706", - "lbl": "miracidium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:35:26Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000707", - "lbl": "sporocyst", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:42:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000708", - "lbl": "cercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:44:51Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "cercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000709", - "lbl": "schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:46:43Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "somule" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000710", - "lbl": "Platyhelminthes adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:51:21Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000711", - "lbl": "Digenean life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:11:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Digeneans include the Schistosomatidae (blood flukes)." - ], - "definition": { - "val": "A developmental stage of a Digenean (fluke).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "fluke life stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000712", - "lbl": "Cestoda life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:18:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a Cestode (tapeworm).", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000713", - "lbl": "oncosphere", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T13:42:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "hexcanth" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000714", - "lbl": "hydatid cyst stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:27:42Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "hydatid cyst" - }, - { - "pred": "hasExactSynonym", - "val": "metacestode vesicle" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000715", - "lbl": "protoscolex stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:40:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "protoscolex" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000716", - "lbl": "metacestode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T15:02:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:070202788X", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacestode stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000717", - "lbl": "cysticercoid stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-18T11:15:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000718", - "lbl": "newly excysted juveniles", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:02:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "NEJ" - }, - { - "pred": "hasExactSynonym", - "val": "newly emerged juveniles" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000719", - "lbl": "juvenile fluke", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:56:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000720", - "lbl": "metacercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T13:01:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000721", - "lbl": "obsolete nematode adult intestinal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:03:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult intestinal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000722", - "lbl": "obsolete nematode adult lumenal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:13:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult lumenal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000723", - "lbl": "Onchocerca embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:22:55Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000724", - "lbl": "3 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:54:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "3 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000017" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000725", - "lbl": "24 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:56:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "24 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000172" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000726", - "lbl": "Onchocerca post-embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:23:56Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca post-embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000727", - "lbl": "Onchocerca microfilaria (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:24:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000728", - "lbl": "Onchocerca microfilaria (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:28:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000729", - "lbl": "Strongyloides free living adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:28:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000730", - "lbl": "Onchocerca L1 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L1 larvae that develop from the microfilariae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000731", - "lbl": "Onchocerca L2 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:40:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L2 larvae that develops from the L1 larvae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000732", - "lbl": "Onchocerca L3 larva (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:45:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000733", - "lbl": "Onchocerca L3 larva (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:48:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000734", - "lbl": "Onchocerca L3 larva in vitro cultured D1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:50:17Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000735", - "lbl": "Onchocerca L3 larva in vitro cultured D2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:51:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000736", - "lbl": "Onchocerca L3 larva in vitro cultured D3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:53:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000737", - "lbl": "Onchocerca L4 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:59:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L4 larvae that develop from L3 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000738", - "lbl": "Onchocerca L4 larva in vitro cultured", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:01:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000739", - "lbl": "Onchocerca adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:02:24Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000740", - "lbl": "Onchocerca adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:03:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000741", - "lbl": "Onchocerca life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:18:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a nematode of the Onchocerca genus.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000742", - "lbl": "Strongyloides free living adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:34:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000793", - "lbl": "Strongyloides post free-living L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:38:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post free-living L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000794", - "lbl": "Strongyloides post parasitic L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:39:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000795", - "lbl": "Strongyloides post parasitic L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:55:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000796", - "lbl": "Strongyloides post free-living L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:57:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000797", - "lbl": "11-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000798", - "lbl": "12-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000799", - "lbl": "13-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:11Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000800", - "lbl": "14-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000801", - "lbl": "newly hatched L1 larval stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", - "xrefs": [ - "PMC:4492366", - "WA:Wormatlas", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000802", - "lbl": "L1 arrest Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:15:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", - "xrefs": [ - "PMC:3697962", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 diapause" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000803", - "lbl": "C. elegans life stage occurring during embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000804", - "lbl": "C. elegans life stage occurring post embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs after embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000805", - "lbl": "C. elegans life stage occurring during elongating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000806", - "lbl": "C. elegans life stage occurring during 1.5-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000807", - "lbl": "C. elegans life stage occurring during 2-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 2-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000808", - "lbl": "C. elegans life stage occurring during 3-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 3-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000809", - "lbl": "C. elegans life stage occurring during bean embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the bean embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000810", - "lbl": "C. elegans life stage occurring during comma embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the comma embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000811", - "lbl": "C. elegans life stage occurring during fully-elongated embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the fully-elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000812", - "lbl": "C. elegans life stage occurring during proliferating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the proliferating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000813", - "lbl": "C. elegans life stage occurring during blastula embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the blastula embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000814", - "lbl": "C. elegans life stage occurring during gastrulation", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the gastrulating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000815", - "lbl": "C. elegans life stage occurring during enclosing embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the enclosing embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000816", - "lbl": "C. elegans life stage occurring during adulthood", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the adult life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000817", - "lbl": "C. elegans life stage occurring during larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000818", - "lbl": "C. elegans life stage occurring during L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L1 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000819", - "lbl": "C. elegans life stage occurring during L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L2 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000820", - "lbl": "C. elegans life stage occurring during L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L3 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000821", - "lbl": "C. elegans life stage occurring during L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L4 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000822", - "lbl": "C. elegans life stage by minutes post first cleavage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000823", - "lbl": "C. elegans life stage by number of cells", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage classified by the number of cells in the organism.", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000824", - "lbl": "C. elegans life stage occurring during larval molt", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage that occurs during a larval molt", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000825", - "lbl": "C. elegans life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A life stage of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000826", - "lbl": "obsolete set of worm life stages", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000827", - "lbl": "post dauer stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000828", - "lbl": "post dauer L4 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL4" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000829", - "lbl": "post dauer adult stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000078", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000663" - } - ], - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000662", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000077" - } - ], - "deprecated": true - }, - "type": "CLASS" - } - ], - "propertyChainAxioms": [ - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000050" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000062" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002131" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - } - ] - } - ] -} + "graphs" : [ { + "id" : "http://purl.obolibrary.org/obo/wbls/wbls-simple.json", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000700", + "val" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "pred" : "http://purl.org/dc/elements/1.1/description", + "val" : "Ontology about the development and life stages of the C. elegans" + }, { + "pred" : "http://purl.org/dc/elements/1.1/title", + "val" : "C. elegans Development Ontology" + }, { + "pred" : "http://purl.org/dc/terms/license", + "val" : "http://creativecommons.org/licenses/by/4.0/" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", + "val" : "OBO-Edit 2.2-rc1" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#date", + "val" : "15:11:2017 12:24" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#default-namespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", + "val" : "1.2" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#saved-by", + "val" : "chris-grove" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Version: 1.04" + }, { + "pred" : "http://www.w3.org/2002/07/owl#versionInfo", + "val" : "2023-04-11" + } ], + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2023-04-11/wbls-simple.json" + }, + "nodes" : [ { + "id" : "http://purl.obolibrary.org/obo/BFO_0000050", + "lbl" : "part_of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a core relation that holds between a part and its whole" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_gp2term", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "xrefs" : [ { + "val" : "BFO:0000050" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "is part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my brain is part of my body (continuant parthood, two material entities)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this day is part of this year (occurrent parthood)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "part_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000019" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000031" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand", + "val" : "part_of" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Submissions:PartOf" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:part_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000062", + "lbl" : "preceded_by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "xrefs" : [ { + "val" : "BFO:0000062" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "preceded by" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is preceded by" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "preceded_by" + }, { + "pred" : "http://purl.org/dc/elements/1.1/source", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" + }, { + "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/RO_0002086", + "lbl" : "ends after", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)" ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002087", + "lbl" : "starts_at_end_of", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)" ], + "xrefs" : [ { + "val" : "RO:0002087" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "starts_at_end_of" + }, { + "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/RO_0002131", + "lbl" : "overlaps", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x overlaps y if and only if there exists some z such that x has part z and z part of y" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000424", + "val" : "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000001", + "lbl" : "free-living nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely outside of a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:42:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000002", + "lbl" : "all stages Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "All C. elegans development stages, including embryo, larva and adult stage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000003", + "lbl" : "embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000004", + "lbl" : "proliferating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "proliferating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000005", + "lbl" : "blastula embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "blastula embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000006", + "lbl" : "1-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-cell embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "fertilized egg", + "xrefs" : [ "WB:dr" ] + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000007", + "lbl" : "2-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000008", + "lbl" : "4-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000009", + "lbl" : "28-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000010", + "lbl" : "gastrulating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "gastrulating embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000011", + "lbl" : "51-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000012", + "lbl" : "88-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000013", + "lbl" : "enclosing embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "enclosing embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000014", + "lbl" : "late cleavage stage embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late cleavage stage embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000015", + "lbl" : "elongating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "elongating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "mid embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000016", + "lbl" : "bean embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "bean embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000017", + "lbl" : "comma embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "comma embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000018", + "lbl" : "1.5-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1.5-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000019", + "lbl" : "2-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000020", + "lbl" : "3-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000021", + "lbl" : "fully-elongated embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "fully-elongated embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "morphogenetic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "pre-hatched embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000022", + "lbl" : "postembryonic Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000023", + "lbl" : "larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000024", + "lbl" : "L1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000025", + "lbl" : "L1-L2 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000026", + "lbl" : "L1-L2 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000027", + "lbl" : "L2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000028", + "lbl" : "L2-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000029", + "lbl" : "L2-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000030", + "lbl" : "L2d-dauer lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000031", + "lbl" : "L2d-dauer molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000032", + "lbl" : "dauer larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A third stage larva specialized for dispersal and long term survival.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "dauer larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000033", + "lbl" : "postdauer-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000034", + "lbl" : "postdauer-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000035", + "lbl" : "L3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000036", + "lbl" : "L3-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000037", + "lbl" : "L3-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000038", + "lbl" : "L4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000039", + "lbl" : "L4-adult lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000040", + "lbl" : "L4-adult molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000041", + "lbl" : "adult Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000042", + "lbl" : "L1-L2 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000043", + "lbl" : "L1-L2d molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000044", + "lbl" : "L1-L2d lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000045", + "lbl" : "L1-L2d ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000046", + "lbl" : "L2d larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000047", + "lbl" : "L2-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000048", + "lbl" : "L2d-dauer ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000049", + "lbl" : "L3-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000050", + "lbl" : "L4-adult ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000051", + "lbl" : "postdauer-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000052", + "lbl" : "post dauer L3 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", + "xrefs" : [ "PMID:27417559", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL3" + }, { + "pred" : "hasExactSynonym", + "val" : "dauer exit" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000053", + "lbl" : "L2d-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000054", + "lbl" : "L2d-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000055", + "lbl" : "L2d-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000056", + "lbl" : "adult male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an male animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000057", + "lbl" : "adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000058", + "lbl" : "pre-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "pre-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000059", + "lbl" : "parasitic nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:44:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000060", + "lbl" : "reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000061", + "lbl" : "oocyte-laying stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "oocyte-laying stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000062", + "lbl" : "post-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000063", + "lbl" : "newly molted young adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 0-24 hours after L4-adult molt.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "newly molted young adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000064", + "lbl" : "1-day post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-day post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000065", + "lbl" : "2-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000066", + "lbl" : "3-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000067", + "lbl" : "4-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000068", + "lbl" : "5-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000069", + "lbl" : "4-7 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-7 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000070", + "lbl" : "7-10 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-10 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000071", + "lbl" : "8-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000072", + "lbl" : "12-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000073", + "lbl" : "L4 larva male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000074", + "lbl" : "11-15 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-22T14:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000075", + "lbl" : "worm life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of a worm", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000076", + "lbl" : "Strongyloides life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Strongyloides developmental stage, including free-living and parasitic stages.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages Strongyloides" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:49:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000077", + "lbl" : "Brugia sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "sheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia immature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "immature microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000662" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000078", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000663" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000079", + "lbl" : "Brugia L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1" + }, { + "pred" : "hasExactSynonym", + "val" : "L1 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000080", + "lbl" : "Brugia L2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2" + }, { + "pred" : "hasExactSynonym", + "val" : "L2 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:30:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000081", + "lbl" : "Brugia L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3" + }, { + "pred" : "hasExactSynonym", + "val" : "L3 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000082", + "lbl" : "Brugia L4", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4" + }, { + "pred" : "hasExactSynonym", + "val" : "L4 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:38Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000083", + "lbl" : "Brugia adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:32:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000084", + "lbl" : "14-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "E-cell has divided into Ea and Ep. Contains 14 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:15:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000085", + "lbl" : "24-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fourth cleavage of the AB lineage. Contains 24 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:23:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000086", + "lbl" : "44-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fifth cleavage of the AB lineage. Contains 44 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:25:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000087", + "lbl" : "68-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Sixth cleavage of the AB lineage. Contains 68 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:26:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000088", + "lbl" : "86-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Seventh cleavage of the AB lineage. Contains 86 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:27:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000089", + "lbl" : "190-cells embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "P4 and M cells have finished migrating. Contains 190 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190-cells embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-15T13:19:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000090", + "lbl" : "96-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-16T15:37:30Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000091", + "lbl" : "Brugia life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Brugia developmental stage, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T03:18:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000092", + "lbl" : "Brugia embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:48:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000093", + "lbl" : "Brugia postembryonic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "postembryonic Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:50:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000094", + "lbl" : "Brugia early embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "early embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:55:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000095", + "lbl" : "Brugia middle embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Proliferates from 100 cells to Lima bean stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "middle embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "middle embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:59:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000096", + "lbl" : "Brugia late embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "From Lima bean to hatching.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:00:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000097", + "lbl" : "Brugia larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:12:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000098", + "lbl" : "Brugia L3i", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3i" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia vector-derived L3" + }, { + "pred" : "hasExactSynonym", + "val" : "vector-derived L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "iL3" + }, { + "pred" : "hasRelatedSynonym", + "val" : "infective L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:23:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000099", + "lbl" : "Brugia post-infection L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-infection L3" + }, { + "pred" : "hasExactSynonym", + "val" : "post-infection L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "piL3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:24:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000100", + "lbl" : "Brugia young adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "young adult" + }, { + "pred" : "hasExactSynonym", + "val" : "young adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:37:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000101", + "lbl" : "Nematode life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in a nematode, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:13:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000102", + "lbl" : "nematode embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "embryo nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode egg stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000103", + "lbl" : "postembryonic nematode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a nematode that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:39Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000104", + "lbl" : "nematode adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L5" + }, { + "pred" : "hasExactSynonym", + "val" : "adult nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:18:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000105", + "lbl" : "nematode larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins after hatching and ends when the nematode becomes adult.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:19:27Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000106", + "lbl" : "L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000107", + "lbl" : "L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L2 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000108", + "lbl" : "L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L3 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:21:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000109", + "lbl" : "L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L4 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:22:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000110", + "lbl" : "sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:23:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000111", + "lbl" : "16-18 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16-18 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000112", + "lbl" : "1 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000113", + "lbl" : "2 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000114", + "lbl" : "3 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000115", + "lbl" : "4 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000116", + "lbl" : "5 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000117", + "lbl" : "6 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000118", + "lbl" : "7 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000119", + "lbl" : "8 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000120", + "lbl" : "9 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000121", + "lbl" : "10 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000122", + "lbl" : "11 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000123", + "lbl" : "12 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000124", + "lbl" : "13 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000125", + "lbl" : "14 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000126", + "lbl" : "15 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000127", + "lbl" : "16 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000128", + "lbl" : "17 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "17 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000129", + "lbl" : "18 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "18 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000130", + "lbl" : "19 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "19 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000131", + "lbl" : "20 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000132", + "lbl" : "21 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "21 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000133", + "lbl" : "22 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "22 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000134", + "lbl" : "23 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "23 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000135", + "lbl" : "24 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000136", + "lbl" : "25 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "25 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000137", + "lbl" : "26 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "26 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000138", + "lbl" : "27 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "27 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000139", + "lbl" : "28 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000140", + "lbl" : "29 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "29 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000141", + "lbl" : "30 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "30 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000142", + "lbl" : "31 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "31 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000143", + "lbl" : "32 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "32 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000144", + "lbl" : "33 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "33 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000145", + "lbl" : "34 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "34 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000146", + "lbl" : "35 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "35 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000147", + "lbl" : "36 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "36 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000148", + "lbl" : "37 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "37 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000149", + "lbl" : "38 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "38 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000150", + "lbl" : "39 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "39 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000151", + "lbl" : "40 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "40 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000152", + "lbl" : "41 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "41 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000153", + "lbl" : "42 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "42 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000154", + "lbl" : "43 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "43 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000155", + "lbl" : "44 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000156", + "lbl" : "45 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "45 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000157", + "lbl" : "46 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "46 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000158", + "lbl" : "47 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "47 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000159", + "lbl" : "48 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "48 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000160", + "lbl" : "49 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "49 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000161", + "lbl" : "50 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "50 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000162", + "lbl" : "51 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000163", + "lbl" : "52 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "52 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000164", + "lbl" : "53 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "53 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000165", + "lbl" : "54 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "54 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000166", + "lbl" : "55 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "55 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000167", + "lbl" : "56 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "56 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000168", + "lbl" : "57 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "57 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000169", + "lbl" : "58 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "58 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000170", + "lbl" : "59 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "59 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000171", + "lbl" : "60 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "60 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000172", + "lbl" : "61 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "61 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000173", + "lbl" : "62 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "62 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000174", + "lbl" : "63 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "63 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000175", + "lbl" : "64 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "64 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000176", + "lbl" : "65 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "65 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000177", + "lbl" : "66 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "66 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000178", + "lbl" : "67 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "67 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000179", + "lbl" : "68 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000180", + "lbl" : "69 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "69 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000181", + "lbl" : "70 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "70 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000182", + "lbl" : "71 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "71 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000183", + "lbl" : "72 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "72 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000184", + "lbl" : "73 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "73 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000185", + "lbl" : "74 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "74 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000186", + "lbl" : "75 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "75 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000187", + "lbl" : "76 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "76 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000188", + "lbl" : "77 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "77 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000189", + "lbl" : "78 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "78 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000190", + "lbl" : "79 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "79 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000191", + "lbl" : "80 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "80 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000192", + "lbl" : "81 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "81 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000193", + "lbl" : "82 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "82 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000194", + "lbl" : "83 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "83 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000195", + "lbl" : "84 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "84 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000196", + "lbl" : "85 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "85 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000197", + "lbl" : "86 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000198", + "lbl" : "87 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "87 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000199", + "lbl" : "88 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000200", + "lbl" : "89 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "89 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000201", + "lbl" : "90 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "90 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000202", + "lbl" : "91 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "91 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000203", + "lbl" : "92 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "92 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000204", + "lbl" : "93 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "93 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000205", + "lbl" : "94 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "94 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000206", + "lbl" : "95 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "95 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000207", + "lbl" : "96 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000208", + "lbl" : "97 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "97 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000209", + "lbl" : "98 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "98 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000210", + "lbl" : "99 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "99 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000211", + "lbl" : "100 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "100 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000212", + "lbl" : "101 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "101 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000213", + "lbl" : "102 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "102 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000214", + "lbl" : "103 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "103 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000215", + "lbl" : "104 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "104 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000216", + "lbl" : "105 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "105 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000217", + "lbl" : "106 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "106 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000218", + "lbl" : "107 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "107 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000219", + "lbl" : "108 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "108 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000220", + "lbl" : "109 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "109 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000221", + "lbl" : "110 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "110 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000222", + "lbl" : "111 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "111 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000223", + "lbl" : "112 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "112 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000224", + "lbl" : "113 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "113 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000225", + "lbl" : "114 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "114 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000226", + "lbl" : "115 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "115 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000227", + "lbl" : "116 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "116 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000228", + "lbl" : "117 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "117 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000229", + "lbl" : "118 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "118 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000230", + "lbl" : "119 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "119 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000231", + "lbl" : "120 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "120 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000232", + "lbl" : "121 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "121 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000233", + "lbl" : "122 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "122 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000234", + "lbl" : "123 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "123 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000235", + "lbl" : "124 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "124 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000236", + "lbl" : "125 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "125 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000237", + "lbl" : "126 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "126 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000238", + "lbl" : "127 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "127 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000239", + "lbl" : "128 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "128 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000240", + "lbl" : "129 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "129 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000241", + "lbl" : "130 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "130 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000242", + "lbl" : "131 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "131 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000243", + "lbl" : "132 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "132 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000244", + "lbl" : "133 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "133 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000245", + "lbl" : "134 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "134 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000246", + "lbl" : "135 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "135 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000247", + "lbl" : "136 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "136 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000248", + "lbl" : "137 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "137 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000249", + "lbl" : "138 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "138 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000250", + "lbl" : "139 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "139 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000251", + "lbl" : "140 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "140 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000252", + "lbl" : "141 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "141 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000253", + "lbl" : "142 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "142 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000254", + "lbl" : "143 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "143 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000255", + "lbl" : "144 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "144 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000256", + "lbl" : "145 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "145 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000257", + "lbl" : "146 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "146 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000258", + "lbl" : "147 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "147 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000259", + "lbl" : "148 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "148 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000260", + "lbl" : "149 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "149 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000261", + "lbl" : "150 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "150 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000262", + "lbl" : "151 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "151 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000263", + "lbl" : "152 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "152 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000264", + "lbl" : "153 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "153 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000265", + "lbl" : "154 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "154 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000266", + "lbl" : "155 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "155 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000267", + "lbl" : "156 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "156 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000268", + "lbl" : "157 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "157 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000269", + "lbl" : "158 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "158 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000270", + "lbl" : "159 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "159 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000271", + "lbl" : "160 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "160 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000272", + "lbl" : "161 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "161 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000273", + "lbl" : "162 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "162 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000274", + "lbl" : "163 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "163 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000275", + "lbl" : "164 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "164 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000276", + "lbl" : "165 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "165 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000277", + "lbl" : "166 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "166 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000278", + "lbl" : "167 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "167 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000279", + "lbl" : "168 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "168 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000280", + "lbl" : "169 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "169 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000281", + "lbl" : "170 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "170 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000282", + "lbl" : "171 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "171 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000283", + "lbl" : "172 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "172 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000284", + "lbl" : "173 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "173 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000285", + "lbl" : "174 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "174 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000286", + "lbl" : "175 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "175 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000287", + "lbl" : "176 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "176 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000288", + "lbl" : "177 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "177 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000289", + "lbl" : "178 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "178 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000290", + "lbl" : "179 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "179 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000291", + "lbl" : "180 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "180 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000292", + "lbl" : "181 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "181 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000293", + "lbl" : "182 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "182 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000294", + "lbl" : "183 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "183 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000295", + "lbl" : "184 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "184 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000296", + "lbl" : "185 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "185 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000297", + "lbl" : "186 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "186 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000298", + "lbl" : "187 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "187 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000299", + "lbl" : "188 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "188 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000300", + "lbl" : "189 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "189 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000301", + "lbl" : "190 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000302", + "lbl" : "191 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "191 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000303", + "lbl" : "192 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "192 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000304", + "lbl" : "193 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "193 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000305", + "lbl" : "194 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "194 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000306", + "lbl" : "195 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "195 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000307", + "lbl" : "196 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "196 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000308", + "lbl" : "197 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "197 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000309", + "lbl" : "198 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "198 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000310", + "lbl" : "199 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "199 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000311", + "lbl" : "200 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "200 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000312", + "lbl" : "201 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "201 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000313", + "lbl" : "202 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "202 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000314", + "lbl" : "203 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "203 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000315", + "lbl" : "204 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "204 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000316", + "lbl" : "205 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "205 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000317", + "lbl" : "206 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "206 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000318", + "lbl" : "207 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "207 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000319", + "lbl" : "208 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "208 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000320", + "lbl" : "209 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "209 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000321", + "lbl" : "210 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "210 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000322", + "lbl" : "211 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "211 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000323", + "lbl" : "212 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "212 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000324", + "lbl" : "213 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "213 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000325", + "lbl" : "214 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "214 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000326", + "lbl" : "215 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "215 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000327", + "lbl" : "216 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "216 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000328", + "lbl" : "217 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "217 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000329", + "lbl" : "218 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "218 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000330", + "lbl" : "219 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "219 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000331", + "lbl" : "220 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "220 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000332", + "lbl" : "221 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "221 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000333", + "lbl" : "222 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "222 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000334", + "lbl" : "223 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "223 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000335", + "lbl" : "224 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "224 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000336", + "lbl" : "225 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "225 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000337", + "lbl" : "226 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "226 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000338", + "lbl" : "227 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "227 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000339", + "lbl" : "228 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "228 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000340", + "lbl" : "229 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "229 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000341", + "lbl" : "230 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "230 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000342", + "lbl" : "231 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "231 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000343", + "lbl" : "232 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "232 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000344", + "lbl" : "233 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "233 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000345", + "lbl" : "234 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "234 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000346", + "lbl" : "235 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "235 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000347", + "lbl" : "236 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "236 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000348", + "lbl" : "237 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "237 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000349", + "lbl" : "238 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "238 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000350", + "lbl" : "239 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "239 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000351", + "lbl" : "240 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "240 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000352", + "lbl" : "241 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "241 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000353", + "lbl" : "242 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "242 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000354", + "lbl" : "243 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "243 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000355", + "lbl" : "244 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "244 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000356", + "lbl" : "245 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "245 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000357", + "lbl" : "246 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "246 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000358", + "lbl" : "247 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "247 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000359", + "lbl" : "248 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "248 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000360", + "lbl" : "249 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "249 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000361", + "lbl" : "250 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "250 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000362", + "lbl" : "251 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "251 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000363", + "lbl" : "252 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "252 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000364", + "lbl" : "253 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "253 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000365", + "lbl" : "254 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "254 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000366", + "lbl" : "255 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "255 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000367", + "lbl" : "256 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "256 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000368", + "lbl" : "257 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "257 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000369", + "lbl" : "258 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "258 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000370", + "lbl" : "259 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "259 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000371", + "lbl" : "260 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "260 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000372", + "lbl" : "261 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "261 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000373", + "lbl" : "262 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "262 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000374", + "lbl" : "263 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "263 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000375", + "lbl" : "264 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "264 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000376", + "lbl" : "265 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "265 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000377", + "lbl" : "266 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "266 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000378", + "lbl" : "267 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "267 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000379", + "lbl" : "268 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "268 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000380", + "lbl" : "269 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "269 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000381", + "lbl" : "270 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "270 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000382", + "lbl" : "271 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "271 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000383", + "lbl" : "272 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "272 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000384", + "lbl" : "273 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "273 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000385", + "lbl" : "274 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "274 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000386", + "lbl" : "275 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "275 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000387", + "lbl" : "276 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "276 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000388", + "lbl" : "277 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "277 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000389", + "lbl" : "278 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "278 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000390", + "lbl" : "279 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "279 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000391", + "lbl" : "280 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "280 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000392", + "lbl" : "281 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "281 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000393", + "lbl" : "282 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "282 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000394", + "lbl" : "283 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "283 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000395", + "lbl" : "284 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "284 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000396", + "lbl" : "285 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "285 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000397", + "lbl" : "286 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "286 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000398", + "lbl" : "287 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "287 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000399", + "lbl" : "288 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "288 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000400", + "lbl" : "289 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "289 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000401", + "lbl" : "290 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "290 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000402", + "lbl" : "291 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "291 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000403", + "lbl" : "292 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "292 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000404", + "lbl" : "293 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "293 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000405", + "lbl" : "294 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "294 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000406", + "lbl" : "295 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "295 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000407", + "lbl" : "296 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "296 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000408", + "lbl" : "297 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "297 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000409", + "lbl" : "298 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "298 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000410", + "lbl" : "299 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "299 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000411", + "lbl" : "300 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "300 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000412", + "lbl" : "301 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "301 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000413", + "lbl" : "302 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "302 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000414", + "lbl" : "303 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "303 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000415", + "lbl" : "304 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "304 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000416", + "lbl" : "305 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "305 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000417", + "lbl" : "306 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "306 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000418", + "lbl" : "307 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "307 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000419", + "lbl" : "308 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "308 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000420", + "lbl" : "309 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "309 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000421", + "lbl" : "310 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "310 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000422", + "lbl" : "311 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "311 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000423", + "lbl" : "312 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "312 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000424", + "lbl" : "313 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "313 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000425", + "lbl" : "314 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "314 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000426", + "lbl" : "315 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "315 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000427", + "lbl" : "316 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "316 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000428", + "lbl" : "317 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "317 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000429", + "lbl" : "318 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "318 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000430", + "lbl" : "319 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "319 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000431", + "lbl" : "320 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "320 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000432", + "lbl" : "321 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "321 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000433", + "lbl" : "322 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "322 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000434", + "lbl" : "323 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "323 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000435", + "lbl" : "324 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "324 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000436", + "lbl" : "325 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "325 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000437", + "lbl" : "326 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "326 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000438", + "lbl" : "327 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "327 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000439", + "lbl" : "328 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "328 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000440", + "lbl" : "329 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "329 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000441", + "lbl" : "330 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "330 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000442", + "lbl" : "331 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "331 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000443", + "lbl" : "332 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "332 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000444", + "lbl" : "333 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "333 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000445", + "lbl" : "334 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "334 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000446", + "lbl" : "335 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "335 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000447", + "lbl" : "336 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "336 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000448", + "lbl" : "337 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "337 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000449", + "lbl" : "338 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "338 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000450", + "lbl" : "339 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "339 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000451", + "lbl" : "340 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "340 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000452", + "lbl" : "341 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "341 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000453", + "lbl" : "342 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "342 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000454", + "lbl" : "343 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "343 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000455", + "lbl" : "344 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "344 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000456", + "lbl" : "345 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "345 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000457", + "lbl" : "346 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "346 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000458", + "lbl" : "347 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "347 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000459", + "lbl" : "348 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "348 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000460", + "lbl" : "349 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "349 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000461", + "lbl" : "350 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "350 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000462", + "lbl" : "351 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "351 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000463", + "lbl" : "352 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "352 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000464", + "lbl" : "353 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "353 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000465", + "lbl" : "354 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "354 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000466", + "lbl" : "355 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "355 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000467", + "lbl" : "356 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "356 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000468", + "lbl" : "357 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "357 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000469", + "lbl" : "358 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "358 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000470", + "lbl" : "359 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "359 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000471", + "lbl" : "360 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "360 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000472", + "lbl" : "361 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "361 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000473", + "lbl" : "362 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "362 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000474", + "lbl" : "363 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "363 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000475", + "lbl" : "364 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "364 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000476", + "lbl" : "365 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "365 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000477", + "lbl" : "366 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "366 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000478", + "lbl" : "367 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "367 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000479", + "lbl" : "368 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "368 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000480", + "lbl" : "369 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "369 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000481", + "lbl" : "370 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "370 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000482", + "lbl" : "371 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "371 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000483", + "lbl" : "372 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "372 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000484", + "lbl" : "373 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "373 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000485", + "lbl" : "374 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "374 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000486", + "lbl" : "375 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "375 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000487", + "lbl" : "376 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "376 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000488", + "lbl" : "377 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "377 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000489", + "lbl" : "378 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "378 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000490", + "lbl" : "379 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "379 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000491", + "lbl" : "380 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "380 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000492", + "lbl" : "381 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "381 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000493", + "lbl" : "382 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "382 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000494", + "lbl" : "383 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "383 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000495", + "lbl" : "384 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "384 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000496", + "lbl" : "385 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "385 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000497", + "lbl" : "386 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "386 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000498", + "lbl" : "387 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "387 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000499", + "lbl" : "388 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "388 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000500", + "lbl" : "389 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "389 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000501", + "lbl" : "390 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "390 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000502", + "lbl" : "391 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "391 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000503", + "lbl" : "392 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "392 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000504", + "lbl" : "393 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "393 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000505", + "lbl" : "394 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "394 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000506", + "lbl" : "395 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "395 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000507", + "lbl" : "396 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "396 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000508", + "lbl" : "397 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "397 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000509", + "lbl" : "398 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "398 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000510", + "lbl" : "399 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "399 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000511", + "lbl" : "400 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "400 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000512", + "lbl" : "401 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "401 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000513", + "lbl" : "402 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "402 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000514", + "lbl" : "403 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "403 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000515", + "lbl" : "404 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "404 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000516", + "lbl" : "405 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "405 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000517", + "lbl" : "406 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "406 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000518", + "lbl" : "407 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "407 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000519", + "lbl" : "408 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "408 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000520", + "lbl" : "409 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "409 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000521", + "lbl" : "410 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "410 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000522", + "lbl" : "411 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "411 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000523", + "lbl" : "412 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "412 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000524", + "lbl" : "413 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "413 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000525", + "lbl" : "414 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "414 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000526", + "lbl" : "415 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "415 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000527", + "lbl" : "416 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "416 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000528", + "lbl" : "417 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "417 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000529", + "lbl" : "418 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "418 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000530", + "lbl" : "419 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "419 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000531", + "lbl" : "420 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "420 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000532", + "lbl" : "421 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "421 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000533", + "lbl" : "422 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "422 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000534", + "lbl" : "423 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "423 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000535", + "lbl" : "424 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "424 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000536", + "lbl" : "425 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "425 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000537", + "lbl" : "426 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "426 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000538", + "lbl" : "427 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "427 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000539", + "lbl" : "428 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "428 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000540", + "lbl" : "429 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "429 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000541", + "lbl" : "430 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "430 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000542", + "lbl" : "431 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "431 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000543", + "lbl" : "432 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "432 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000544", + "lbl" : "433 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "433 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000545", + "lbl" : "434 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "434 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000546", + "lbl" : "435 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "435 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000547", + "lbl" : "436 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "436 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000548", + "lbl" : "437 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "437 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000549", + "lbl" : "438 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "438 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000550", + "lbl" : "439 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "439 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000551", + "lbl" : "440 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "440 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000552", + "lbl" : "441 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "441 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000553", + "lbl" : "442 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "442 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000554", + "lbl" : "443 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "443 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000555", + "lbl" : "444 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "444 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000556", + "lbl" : "445 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "445 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000557", + "lbl" : "446 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "446 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000558", + "lbl" : "447 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "447 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000559", + "lbl" : "448 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "448 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000560", + "lbl" : "449 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "449 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000561", + "lbl" : "450 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "450 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000562", + "lbl" : "451 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "451 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000563", + "lbl" : "452 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "452 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000564", + "lbl" : "453 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "453 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000565", + "lbl" : "454 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "454 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000566", + "lbl" : "455 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "455 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000567", + "lbl" : "456 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "456 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000568", + "lbl" : "457 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "457 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000569", + "lbl" : "458 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "458 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000570", + "lbl" : "459 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "459 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000571", + "lbl" : "460 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "460 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000572", + "lbl" : "461 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "461 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000573", + "lbl" : "462 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "462 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000574", + "lbl" : "463 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "463 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000575", + "lbl" : "464 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "464 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000576", + "lbl" : "465 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "465 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000577", + "lbl" : "466 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "466 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000578", + "lbl" : "467 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "467 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000579", + "lbl" : "468 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "468 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000580", + "lbl" : "469 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "469 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000581", + "lbl" : "470 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "470 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000582", + "lbl" : "471 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "471 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000583", + "lbl" : "472 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "472 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000584", + "lbl" : "473 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "473 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000585", + "lbl" : "474 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "474 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000586", + "lbl" : "475 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "475 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000587", + "lbl" : "476 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "476 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000588", + "lbl" : "477 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "477 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000589", + "lbl" : "478 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "478 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000590", + "lbl" : "479 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "479 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000591", + "lbl" : "480 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "480 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000592", + "lbl" : "481 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "481 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000593", + "lbl" : "482 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "482 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000594", + "lbl" : "483 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "483 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000595", + "lbl" : "484 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "484 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000596", + "lbl" : "485 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "485 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000597", + "lbl" : "486 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "486 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000598", + "lbl" : "487 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "487 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000599", + "lbl" : "488 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "488 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000600", + "lbl" : "489 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "489 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000601", + "lbl" : "490 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "490 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000602", + "lbl" : "491 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "491 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000603", + "lbl" : "492 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "492 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000604", + "lbl" : "493 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "493 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000605", + "lbl" : "494 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "494 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000606", + "lbl" : "495 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "495 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000607", + "lbl" : "496 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "496 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000608", + "lbl" : "497 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "497 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000609", + "lbl" : "498 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "498 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000610", + "lbl" : "499 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "499 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000611", + "lbl" : "500 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "500 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000612", + "lbl" : "501 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "501 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000613", + "lbl" : "502 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "502 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000614", + "lbl" : "503 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "503 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000615", + "lbl" : "504 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "504 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000616", + "lbl" : "505 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "505 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000617", + "lbl" : "506 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "506 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000618", + "lbl" : "507 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "507 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000619", + "lbl" : "508 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "508 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000620", + "lbl" : "509 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "509 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000621", + "lbl" : "510 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "510 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000622", + "lbl" : "511 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "511 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000623", + "lbl" : "512 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "512 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000624", + "lbl" : "513 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "513 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000625", + "lbl" : "514 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "514 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000626", + "lbl" : "515 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "515 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000627", + "lbl" : "516 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "516 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000628", + "lbl" : "517 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "517 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000629", + "lbl" : "518 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "518 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000630", + "lbl" : "519 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "519 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000631", + "lbl" : "520 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "520 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000632", + "lbl" : "521 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "521 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000633", + "lbl" : "522 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "522 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000634", + "lbl" : "523 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "523 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000635", + "lbl" : "524 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "524 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000636", + "lbl" : "525 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "525 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000637", + "lbl" : "526 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "526 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000638", + "lbl" : "527 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "527 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000639", + "lbl" : "528 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "528 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000640", + "lbl" : "529 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "529 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000641", + "lbl" : "530 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "530 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000642", + "lbl" : "531 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "531 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000643", + "lbl" : "532 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "532 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000644", + "lbl" : "533 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "533 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000645", + "lbl" : "534 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "534 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000646", + "lbl" : "535 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "535 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000647", + "lbl" : "536 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "536 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000648", + "lbl" : "537 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "537 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000649", + "lbl" : "538 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "538 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000650", + "lbl" : "539 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "539 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000651", + "lbl" : "540 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "540 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000652", + "lbl" : "541 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "541 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000653", + "lbl" : "542 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "542 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000654", + "lbl" : "543 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "543 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000655", + "lbl" : "544 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "544 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000656", + "lbl" : "545 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "545 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000657", + "lbl" : "546 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "546 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000658", + "lbl" : "547 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "547 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000659", + "lbl" : "548 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "548 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000660", + "lbl" : "549 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "549 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000661", + "lbl" : "550 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "550 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000662", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000077" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000663", + "lbl" : "Brugia unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unsheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia mature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "mature microfilaria Bma" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-10T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000078" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000664", + "lbl" : "microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "comments" : [ "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000665", + "lbl" : "Brugia microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:25:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000666", + "lbl" : "unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:50:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000667", + "lbl" : "nodular microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found in nodules and ulcers.", + "xrefs" : [ "PMID:1796232", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae" + }, { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000668", + "lbl" : "skin microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found subcutaneously", + "xrefs" : [ "PMID:20772951", "PMID:7797912", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "skin microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000669", + "lbl" : "unfertilized egg Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unfertilized egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-26T11:49:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000670", + "lbl" : "6-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000671", + "lbl" : "7-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000672", + "lbl" : "8-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000673", + "lbl" : "9-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000674", + "lbl" : "10-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000675", + "lbl" : "15-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000676", + "lbl" : "20-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000677", + "lbl" : "Strongyloides free-living stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:51:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000678", + "lbl" : "Strongyloides parasitic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:52:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000679", + "lbl" : "nematode infective stage larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larval stage that is capable of infecting a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Host organism here refers to the main host organism rather than intermediate hosts." ], + "synonyms" : [ { + "pred" : "hasNarrowSynonym", + "val" : "infective larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:21:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000680", + "lbl" : "Strongyloides infective L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "infective L3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides iL3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides infective stage larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:27:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000681", + "lbl" : "Strongyloides parasitic female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic female" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:36:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000682", + "lbl" : "Strongyloides free-living adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living adult" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides free-living L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:48:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000683", + "lbl" : "L4.0 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.0 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:03:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000684", + "lbl" : "L4.1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:06:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000685", + "lbl" : "L4.2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:09:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000686", + "lbl" : "L4.3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:10:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000687", + "lbl" : "L4.4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:11:12Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000688", + "lbl" : "L4.5 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.5 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:13:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000689", + "lbl" : "L4.6 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.6 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:15:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000690", + "lbl" : "L4.7 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.7 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:16:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000691", + "lbl" : "L4.8 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.8 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:18:02Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000692", + "lbl" : "L4.9 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.9 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:20:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000693", + "lbl" : "560 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "560 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T09:27:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000694", + "lbl" : "570 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "570 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T10:07:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000695", + "lbl" : "640 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "640 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:08:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000696", + "lbl" : "650 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "650 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:11:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000697", + "lbl" : "660 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "660 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:13:05Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000698", + "lbl" : "720 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "720 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:16:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000699", + "lbl" : "770 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "770 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:18:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000700", + "lbl" : "780 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "780 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:23:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000701", + "lbl" : "820 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "820 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:25:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000702", + "lbl" : "830 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "830 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:28:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000703", + "lbl" : "850 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "850 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:30:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000704", + "lbl" : "Platyhelminthes life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in Platyhelminthes (flatworms).", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "Platyhelminthes developmental stage" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:14:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000705", + "lbl" : "Platyhelminthes egg", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "egg" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:17:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000706", + "lbl" : "miracidium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:35:26Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000707", + "lbl" : "sporocyst", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:42:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000708", + "lbl" : "cercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "cercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:44:51Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000709", + "lbl" : "schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "somule" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:46:43Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000710", + "lbl" : "Platyhelminthes adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:51:21Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000711", + "lbl" : "Digenean life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental stage of a Digenean (fluke).", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Digeneans include the Schistosomatidae (blood flukes)." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "fluke life stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:11:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000712", + "lbl" : "Cestoda life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a Cestode (tapeworm).", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:18:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000713", + "lbl" : "oncosphere", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "hexcanth" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T13:42:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000714", + "lbl" : "hydatid cyst stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "hydatid cyst" + }, { + "pred" : "hasExactSynonym", + "val" : "metacestode vesicle" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:27:42Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000715", + "lbl" : "protoscolex stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "protoscolex" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:40:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000716", + "lbl" : "metacestode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:070202788X", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacestode stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T15:02:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000717", + "lbl" : "cysticercoid stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-18T11:15:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000718", + "lbl" : "newly excysted juveniles", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "NEJ" + }, { + "pred" : "hasExactSynonym", + "val" : "newly emerged juveniles" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:02:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000719", + "lbl" : "juvenile fluke", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:56:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000720", + "lbl" : "metacercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T13:01:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000721", + "lbl" : "obsolete nematode adult intestinal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult intestinal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:03:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000722", + "lbl" : "obsolete nematode adult lumenal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult lumenal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:13:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000723", + "lbl" : "Onchocerca embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:22:55Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000724", + "lbl" : "3 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "3 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000017" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:54:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000725", + "lbl" : "24 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "24 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000172" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:56:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000726", + "lbl" : "Onchocerca post-embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca post-embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:23:56Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000727", + "lbl" : "Onchocerca microfilaria (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:24:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000728", + "lbl" : "Onchocerca microfilaria (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:28:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000729", + "lbl" : "Strongyloides free living adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:28:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000730", + "lbl" : "Onchocerca L1 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L1 larvae that develop from the microfilariae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000731", + "lbl" : "Onchocerca L2 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L2 larvae that develops from the L1 larvae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:40:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000732", + "lbl" : "Onchocerca L3 larva (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:45:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000733", + "lbl" : "Onchocerca L3 larva (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:48:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000734", + "lbl" : "Onchocerca L3 larva in vitro cultured D1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:50:17Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000735", + "lbl" : "Onchocerca L3 larva in vitro cultured D2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:51:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000736", + "lbl" : "Onchocerca L3 larva in vitro cultured D3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:53:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000737", + "lbl" : "Onchocerca L4 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L4 larvae that develop from L3 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:59:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000738", + "lbl" : "Onchocerca L4 larva in vitro cultured", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:01:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000739", + "lbl" : "Onchocerca adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:02:24Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000740", + "lbl" : "Onchocerca adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:03:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000741", + "lbl" : "Onchocerca life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a nematode of the Onchocerca genus.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:18:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000742", + "lbl" : "Strongyloides free living adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:34:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000793", + "lbl" : "Strongyloides post free-living L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post free-living L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:38:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000794", + "lbl" : "Strongyloides post parasitic L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:39:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000795", + "lbl" : "Strongyloides post parasitic L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:55:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000796", + "lbl" : "Strongyloides post free-living L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:57:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000797", + "lbl" : "11-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000798", + "lbl" : "12-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000799", + "lbl" : "13-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:11Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000800", + "lbl" : "14-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000801", + "lbl" : "newly hatched L1 larval stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", + "xrefs" : [ "PMC:4492366", "WA:Wormatlas", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000802", + "lbl" : "L1 arrest Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", + "xrefs" : [ "PMC:3697962", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 diapause" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:15:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000803", + "lbl" : "C. elegans life stage occurring during embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000804", + "lbl" : "C. elegans life stage occurring post embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs after embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000805", + "lbl" : "C. elegans life stage occurring during elongating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000806", + "lbl" : "C. elegans life stage occurring during 1.5-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000807", + "lbl" : "C. elegans life stage occurring during 2-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 2-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000808", + "lbl" : "C. elegans life stage occurring during 3-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 3-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000809", + "lbl" : "C. elegans life stage occurring during bean embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the bean embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000810", + "lbl" : "C. elegans life stage occurring during comma embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the comma embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000811", + "lbl" : "C. elegans life stage occurring during fully-elongated embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the fully-elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000812", + "lbl" : "C. elegans life stage occurring during proliferating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the proliferating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000813", + "lbl" : "C. elegans life stage occurring during blastula embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the blastula embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000814", + "lbl" : "C. elegans life stage occurring during gastrulation", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the gastrulating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000815", + "lbl" : "C. elegans life stage occurring during enclosing embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the enclosing embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000816", + "lbl" : "C. elegans life stage occurring during adulthood", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the adult life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000817", + "lbl" : "C. elegans life stage occurring during larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000818", + "lbl" : "C. elegans life stage occurring during L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L1 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000819", + "lbl" : "C. elegans life stage occurring during L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L2 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000820", + "lbl" : "C. elegans life stage occurring during L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L3 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000821", + "lbl" : "C. elegans life stage occurring during L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L4 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000822", + "lbl" : "C. elegans life stage by minutes post first cleavage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", + "xrefs" : [ "WB:WBPaper00000653", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000823", + "lbl" : "C. elegans life stage by number of cells", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage classified by the number of cells in the organism.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000824", + "lbl" : "C. elegans life stage occurring during larval molt", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage that occurs during a larval molt", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000825", + "lbl" : "C. elegans life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A life stage of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000826", + "lbl" : "obsolete set of worm life stages", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000827", + "lbl" : "post dauer stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000828", + "lbl" : "post dauer L4 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL4" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000829", + "lbl" : "post dauer adult stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + } ], + "edges" : [ { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000001", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000002", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "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_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "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_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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000088" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "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/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000819" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000031", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000034", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000820" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000027" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000032" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000040", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000026" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000045", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000043" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000029" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000040" + }, { + "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/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "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/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000055", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000056", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000057", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000059", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000064" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000065" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000066" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000067" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000071" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000073", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000070" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000075", + "pred" : "is_a", + "obj" : "http://www.w3.org/2002/07/owl#Thing" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000076", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000077", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "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_0000078", + "pred" : "is_a", + "obj" : "http://www.w3.org/2002/07/owl#Thing" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000663" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000079" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000080" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000012" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000091", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000092", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000093", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000094", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", + "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" : "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "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/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000098", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "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/WBls_0000091" + }, { + "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/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000082" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000101", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "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/WBls_0000101" + }, { + "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/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000104", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000105", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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/WBls_0000105" + }, { + "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/WBls_0000105" + }, { + "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/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000109", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000110", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000675" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "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" : "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000133" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "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_0000230", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "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_0000357", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000814" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000815" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "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_0000484", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000809" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000810" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000806" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "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_0000611", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000807" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000660" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000662", + "pred" : "is_a", + "obj" : "http://www.w3.org/2002/07/owl#Thing" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000665" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000077" + }, { + "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/WBls_0000664" + }, { + "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/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000667", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000668", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000669", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000670" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000671" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000672" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000673" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000800" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000111" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000679", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000679" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000683" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000684" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000685" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000686" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000687" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000688" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000689" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000690" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000808" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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/WBls_0000811" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000811" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000811" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000811" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000811" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000811" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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/WBls_0000818" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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/WBls_0000818" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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/WBls_0000818" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000702" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000704", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000705", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000706", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000707", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "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/WBls_0000711" + }, { + "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/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000710", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000711", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000712", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000713", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000716", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000718", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000719", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000720", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000721", + "pred" : "is_a", + "obj" : "http://www.w3.org/2002/07/owl#Thing" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000722", + "pred" : "is_a", + "obj" : "http://www.w3.org/2002/07/owl#Thing" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000723", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000741" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000724", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000724" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000728", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000727" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000733", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000732" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000734", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000734" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000736", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000737", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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/WBls_0000726" + }, { + "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/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000740", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000737" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000741", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000742", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000682" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000795", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000797" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000798" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000799" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000801" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000803", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000804", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000805", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000806", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000807", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000808", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000809", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000810", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000811", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000812", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000813", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000814", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000815", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000816", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000817", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000818", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000819", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000820", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000821", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000822", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000823", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000824", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000825", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000826", + "pred" : "is_a", + "obj" : "http://www.w3.org/2002/07/owl#Thing" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000828", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000829", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "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/BFO_0000050", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002131" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000062", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002086" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002087", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000062" + } ], + "propertyChainAxioms" : [ { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000062" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002131", "http://purl.obolibrary.org/obo/BFO_0000050" ] + } ] + } ] +} \ No newline at end of file diff --git a/wbls-simple.obo b/wbls-simple.obo index 865257b..b2ff83e 100644 --- a/wbls-simple.obo +++ b/wbls-simple.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2023-01-03/wbls-simple.owl +data-version: wbls/releases/2023-04-11/wbls-simple.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 @@ -9,7 +9,7 @@ remark: Version: 1.04 ontology: wbls/wbls-simple property_value: http://purl.org/dc/elements/1.1/description "Ontology about the development and life stages of the C. elegans" xsd:string 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: http://purl.org/dc/terms/license "http://creativecommons.org/licenses/by/4.0/" xsd:string property_value: IAO:0000700 WBls:0000075 [Term] @@ -8802,7 +8802,7 @@ property_value: RO:0040042 BFO:0000020 property_value: RO:0040042 BFO:0000031 property_value: seeAlso http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections property_value: seeAlso http://ontologydesignpatterns.org/wiki/Submissions:PartOf -property_value: seeAlso http://www.obofoundry.org/ro/#OBO_REL:part_of xsd:string +property_value: seeAlso "http://www.obofoundry.org/ro/#OBO_REL:part_of" xsd:string is_transitive: true is_a: RO:0002131 ! overlaps @@ -8813,7 +8813,7 @@ name: preceded_by def: "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." [] subset: ro-eco xref: BFO:0000062 -property_value: http://purl.org/dc/elements/1.1/source http://www.obofoundry.org/ro/#OBO_REL:preceded_by xsd:string +property_value: http://purl.org/dc/elements/1.1/source "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" xsd:string property_value: IAO:0000111 "preceded by" xsd:string property_value: IAO:0000116 "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." xsd:string property_value: IAO:0000118 "is preceded by" xsd:string diff --git a/wbls-simple.owl b/wbls-simple.owl index de7e0d3..0825f9d 100644 --- a/wbls-simple.owl +++ b/wbls-simple.owl @@ -11,18 +11,18 @@ 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 http://creativecommons.org/licenses/by/4.0/ - OBO-Edit 2.2-rc1 - 15:11:2017 12:24 - worm_development - 1.2 - chris-grove - Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. - Version: 1.04 + OBO-Edit 2.2-rc1 + 15:11:2017 12:24 + worm_development + 1.2 + chris-grove + Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. + Version: 1.04 @@ -92,6 +92,12 @@ + + + + + + @@ -110,18 +116,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -134,6 +164,18 @@ + + + + + + + + + + + + @@ -164,6 +206,12 @@ + + + + + + @@ -188,6 +236,12 @@ + + + + + + @@ -228,16 +282,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - BFO:0000050 - worm_development - part_of + BFO:0000050 + worm_development + part_of - part_of + part_of part of - part_of + part_of http://www.obofoundry.org/ro/#OBO_REL:part_of @@ -260,13 +314,13 @@ A continuant cannot be part of an occurrent: use 'participates in'. An is preceded by preceded_by http://www.obofoundry.org/ro/#OBO_REL:preceded_by - BFO:0000062 - worm_development - preceded_by + BFO:0000062 + worm_development + preceded_by - preceded_by + preceded_by preceded by - preceded_by + preceded_by @@ -289,8 +343,8 @@ A continuant cannot be part of an occurrent: use 'participates in'. An David Osumi-Sutherland starts_at_end_of - RO:0002087 - worm_development + RO:0002087 + worm_development starts_at_end_of starts_at_end_of X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y) @@ -339,18 +393,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The nematode life-cycle stage that occurs entirely outside of a host organism. - jl16 - 2015-03-19T10:42:18Z - worm_development - WBls:0000001 - free-living nematode stage + The nematode life-cycle stage that occurs entirely outside of a host organism. + jl16 + 2015-03-19T10:42:18Z + worm_development + WBls:0000001 + free-living nematode stage - The nematode life-cycle stage that occurs entirely outside of a host organism. - WB:jl + The nematode life-cycle stage that occurs entirely outside of a host organism. + WB:jl @@ -359,17 +413,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - All C. elegans development stages, including embryo, larva and adult stage. - all stages - worm_development - WBls:0000002 - all stages Ce + All C. elegans development stages, including embryo, larva and adult stage. + all stages + worm_development + WBls:0000002 + all stages Ce - All C. elegans development stages, including embryo, larva and adult stage. - WB:wjc + All C. elegans development stages, including embryo, larva and adult stage. + WB:wjc @@ -379,18 +433,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - embryo - worm_development - WBls:0000003 - embryo Ce + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + embryo + worm_development + WBls:0000003 + embryo Ce - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:wjc + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:wjc @@ -405,18 +459,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - proliferating embryo - early embryo - worm_development - WBls:0000004 - proliferating embryo Ce + 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. + proliferating embryo + early embryo + worm_development + WBls:0000004 + proliferating embryo Ce - 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 + 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 @@ -431,17 +485,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - blastula embryo - worm_development - WBls:0000005 - blastula embryo Ce + 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. + blastula embryo + worm_development + WBls:0000005 + blastula embryo Ce - 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 + 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 @@ -463,24 +517,24 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - 1-cell embryo - fertilized egg - worm_development - WBls:0000006 - 1-cell embryo Ce + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + 1-cell embryo + fertilized egg + worm_development + WBls:0000006 + 1-cell embryo Ce - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - WB:wjc + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + WB:wjc - fertilized egg - WB:dr + fertilized egg + WB:dr @@ -502,17 +556,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - 2-cell embryo - worm_development - WBls:0000007 - 2-cell embryo Ce + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + 2-cell embryo + worm_development + WBls:0000007 + 2-cell embryo Ce - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - WB:wjc + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + WB:wjc @@ -534,17 +588,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - 4-cell embryo - worm_development - WBls:0000008 - 4-cell embryo Ce + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + 4-cell embryo + worm_development + WBls:0000008 + 4-cell embryo Ce - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - WB:wjc + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + WB:wjc @@ -560,17 +614,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - 28-cell embryo - worm_development - WBls:0000009 - 28-cell embryo Ce + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + 28-cell embryo + worm_development + WBls:0000009 + 28-cell embryo Ce - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - WB:wjc + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + WB:wjc @@ -591,17 +645,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - gastrulating embryo - worm_development - WBls:0000010 - gastrulating embryo Ce + 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. + gastrulating embryo + worm_development + WBls:0000010 + gastrulating embryo Ce - 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 + 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 @@ -623,17 +677,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - 51-cell embryo - worm_development - WBls:0000011 - 51-cell embryo Ce + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + 51-cell embryo + worm_development + WBls:0000011 + 51-cell embryo Ce - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - WB:wjc + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + WB:wjc @@ -655,17 +709,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - 88-cell embryo - worm_development - WBls:0000012 - 88-cell embryo Ce + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + 88-cell embryo + worm_development + WBls:0000012 + 88-cell embryo Ce - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - WB:wjc + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + WB:wjc @@ -692,17 +746,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - enclosing embryo - worm_development - WBls:0000013 - enclosing embryo Ce + 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. + enclosing embryo + worm_development + WBls:0000013 + enclosing embryo Ce - 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 + 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 @@ -723,17 +777,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - late cleavage stage embryo - worm_development - WBls:0000014 - late cleavage stage embryo Ce + 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. + late cleavage stage embryo + worm_development + WBls:0000014 + late cleavage stage embryo Ce - 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 + 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 @@ -760,18 +814,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - elongating embryo - mid embryo - worm_development - WBls:0000015 - elongating embryo Ce + 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. + elongating embryo + mid embryo + worm_development + WBls:0000015 + elongating embryo Ce - 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 + 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 @@ -798,17 +852,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - bean embryo - worm_development - WBls:0000016 - bean embryo Ce + 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. + bean embryo + worm_development + WBls:0000016 + bean embryo Ce - 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 + 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 @@ -829,17 +883,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - comma embryo - worm_development - WBls:0000017 - comma embryo Ce + 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. + comma embryo + worm_development + WBls:0000017 + comma embryo Ce - 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 + 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 @@ -860,17 +914,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - 1.5-fold embryo - worm_development - WBls:0000018 - 1.5-fold embryo Ce + 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. + 1.5-fold embryo + worm_development + WBls:0000018 + 1.5-fold embryo Ce - 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 + 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 @@ -891,17 +945,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - 2-fold embryo - worm_development - WBls:0000019 - 2-fold embryo Ce + 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. + 2-fold embryo + worm_development + WBls:0000019 + 2-fold embryo Ce - 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 + 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 @@ -922,17 +976,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - 3-fold embryo - worm_development - WBls:0000020 - 3-fold embryo Ce + 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. + 3-fold embryo + worm_development + WBls:0000020 + 3-fold embryo Ce - 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 + 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 @@ -959,20 +1013,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - fully-elongated embryo - late embryo - morphogenetic stage - pre-hatched embryo - worm_development - WBls:0000021 - fully-elongated embryo Ce + 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. + fully-elongated embryo + late embryo + morphogenetic stage + pre-hatched embryo + worm_development + WBls:0000021 + fully-elongated embryo Ce - 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. - WB:wjc + 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. + WB:wjc @@ -987,18 +1041,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - postembryonic - worm_development - WBls:0000022 - postembryonic Ce + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + postembryonic + worm_development + WBls:0000022 + postembryonic Ce - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - WB:WBPerson2987 - WB:wjc + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + WB:WBPerson2987 + WB:wjc @@ -1020,18 +1074,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - larva - worm_development - WBls:0000023 - larva Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + larva + worm_development + WBls:0000023 + larva Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:wjc + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:wjc @@ -1053,17 +1107,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - L1 larva - worm_development - WBls:0000024 - L1 larva Ce + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + L1 larva + worm_development + WBls:0000024 + L1 larva Ce - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - WB:wjc + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + WB:wjc @@ -1078,17 +1132,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2 lethargus - worm_development - WBls:0000025 - L1-L2 lethargus Ce + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2 lethargus + worm_development + WBls:0000025 + L1-L2 lethargus Ce - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1109,17 +1163,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L1-L2 molt - worm_development - WBls:0000026 - L1-L2 molt Ce + 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. + L1-L2 molt + worm_development + WBls:0000026 + L1-L2 molt Ce - 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 + 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 @@ -1147,17 +1201,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. - L2 larva - worm_development - WBls:0000027 - L2 larva Ce + The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. + L2 larva + worm_development + WBls:0000027 + L2 larva Ce - 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 + 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 @@ -1172,17 +1226,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2-L3 lethargus - worm_development - WBls:0000028 - L2-L3 lethargus Ce + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2-L3 lethargus + worm_development + WBls:0000028 + L2-L3 lethargus Ce - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1203,17 +1257,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L2-L3 molt - worm_development - WBls:0000029 - L2-L3 molt Ce + 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. + L2-L3 molt + worm_development + WBls:0000029 + L2-L3 molt Ce - 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 + 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 @@ -1228,17 +1282,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-dauer lethargus - worm_development - WBls:0000030 - L2d-dauer lethargus Ce + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-dauer lethargus + worm_development + WBls:0000030 + L2d-dauer lethargus Ce - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1253,17 +1307,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L2d-dauer molt - worm_development - WBls:0000031 - L2d-dauer molt Ce + 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. + L2d-dauer molt + worm_development + WBls:0000031 + L2d-dauer molt Ce - 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 + 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 @@ -1284,17 +1338,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A third stage larva specialized for dispersal and long term survival. - dauer larva - worm_development - WBls:0000032 - dauer larva Ce + A third stage larva specialized for dispersal and long term survival. + dauer larva + worm_development + WBls:0000032 + dauer larva Ce - A third stage larva specialized for dispersal and long term survival. - ISBN:0-87969-433-5 + A third stage larva specialized for dispersal and long term survival. + ISBN:0-87969-433-5 @@ -1309,17 +1363,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - postdauer-L4 lethargus - worm_development - WBls:0000033 - postdauer-L4 lethargus Ce + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + postdauer-L4 lethargus + worm_development + WBls:0000033 + postdauer-L4 lethargus Ce - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1334,17 +1388,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - postdauer-L4 molt - worm_development - WBls:0000034 - postdauer-L4 molt Ce + 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. + postdauer-L4 molt + worm_development + WBls:0000034 + postdauer-L4 molt Ce - 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 + 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 @@ -1372,17 +1426,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - L3 larva - worm_development - WBls:0000035 - L3 larva Ce + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + L3 larva + worm_development + WBls:0000035 + L3 larva Ce - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - WB:wjc + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + WB:wjc @@ -1397,17 +1451,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L3-L4 lethargus - worm_development - WBls:0000036 - L3-L4 lethargus Ce + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L3-L4 lethargus + worm_development + WBls:0000036 + L3-L4 lethargus Ce - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1428,17 +1482,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L3-L4 molt - worm_development - WBls:0000037 - L3-L4 molt Ce + 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. + L3-L4 molt + worm_development + WBls:0000037 + L3-L4 molt Ce - 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 + 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 @@ -1472,17 +1526,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva - worm_development - WBls:0000038 - L4 larva Ce + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva + worm_development + WBls:0000038 + L4 larva Ce - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -1497,17 +1551,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L4-adult lethargus - worm_development - WBls:0000039 - L4-adult lethargus Ce + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L4-adult lethargus + worm_development + WBls:0000039 + L4-adult lethargus Ce - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1522,17 +1576,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L4-adult molt - worm_development - WBls:0000040 - L4-adult molt Ce + 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. + L4-adult molt + worm_development + WBls:0000040 + L4-adult molt Ce - 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 + 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 @@ -1566,17 +1620,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - adult - worm_development - WBls:0000041 - adult Ce + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + adult + worm_development + WBls:0000041 + adult Ce - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - WB:wjc + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + WB:wjc @@ -1597,17 +1651,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2 ecdysis - worm_development - WBls:0000042 - L1-L2 ecdysis Ce + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2 ecdysis + worm_development + WBls:0000042 + L1-L2 ecdysis Ce - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1622,17 +1676,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L1-L2d molt - worm_development - WBls:0000043 - L1-L2d molt Ce + 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. + L1-L2d molt + worm_development + WBls:0000043 + L1-L2d molt Ce - 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 + 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 @@ -1647,17 +1701,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2d lethargus - worm_development - WBls:0000044 - L1-L2d lethargus Ce + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2d lethargus + worm_development + WBls:0000044 + L1-L2d lethargus Ce - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1672,17 +1726,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2d ecdysis - worm_development - WBls:0000045 - L1-L2d ecdysis Ce + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2d ecdysis + worm_development + WBls:0000045 + L1-L2d ecdysis Ce - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1697,17 +1751,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L2d larva - worm_development - WBls:0000046 - L2d larva Ce + 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. + L2d larva + worm_development + WBls:0000046 + L2d larva Ce - 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 + 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 @@ -1728,17 +1782,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2-L3 ecdysis - worm_development - WBls:0000047 - L2-L3 ecdysis Ce + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2-L3 ecdysis + worm_development + WBls:0000047 + L2-L3 ecdysis Ce - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1753,17 +1807,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-dauer ecdysis - worm_development - WBls:0000048 - L2d-dauer ecdysis Ce + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-dauer ecdysis + worm_development + WBls:0000048 + L2d-dauer ecdysis Ce - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1784,17 +1838,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L3-L4 ecdysis - worm_development - WBls:0000049 - L3-L4 ecdysis Ce + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L3-L4 ecdysis + worm_development + WBls:0000049 + L3-L4 ecdysis Ce - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1815,16 +1869,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - worm_development - WBls:0000050 - L4-adult ecdysis Ce + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + worm_development + WBls:0000050 + L4-adult ecdysis Ce - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - WB:wjc + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + WB:wjc @@ -1839,17 +1893,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - postdauer-L4 ecdysis - worm_development - WBls:0000051 - postdauer-L4 ecdysis Ce + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + postdauer-L4 ecdysis + worm_development + WBls:0000051 + postdauer-L4 ecdysis Ce - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1865,26 +1919,26 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PDL3 - dauer exit - worm_development - WBls:0000052 - "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)." - post dauer L3 stage Ce + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PDL3 + dauer exit + worm_development + WBls:0000052 + "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)." + post dauer L3 stage Ce - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PMID:27417559 - WB:wjc + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PMID:27417559 + WB:wjc - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -1899,17 +1953,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - L2d-L3 molt - worm_development - WBls:0000053 - L2d-L3 molt Ce + 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. + L2d-L3 molt + worm_development + WBls:0000053 + L2d-L3 molt Ce - 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 + 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 @@ -1924,17 +1978,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-L3 lethargus - worm_development - WBls:0000054 - L2d-L3 lethargus Ce + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-L3 lethargus + worm_development + WBls:0000054 + L2d-L3 lethargus Ce - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -1949,17 +2003,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-L3 ecdysis - worm_development - WBls:0000055 - L2d-L3 ecdysis Ce + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-L3 ecdysis + worm_development + WBls:0000055 + L2d-L3 ecdysis Ce - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -1968,17 +2022,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage after an male animal is fully-developed and reaches maturity. - adult male - worm_development - WBls:0000056 - adult male Ce + The stage after an male animal is fully-developed and reaches maturity. + adult male + worm_development + WBls:0000056 + adult male Ce - The stage after an male animal is fully-developed and reaches maturity. - WB:wjc + The stage after an male animal is fully-developed and reaches maturity. + WB:wjc @@ -1987,17 +2041,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - adult hermaphrodite - worm_development - WBls:0000057 - adult hermaphrodite Ce + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + adult hermaphrodite + worm_development + WBls:0000057 + adult hermaphrodite Ce - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - WB:wjc + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + WB:wjc @@ -2012,17 +2066,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - pre-reproductive stage adult hermaphrodite - worm_development - WBls:0000058 - pre-reproductive stage adult hermaphrodite Ce + 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. + pre-reproductive stage adult hermaphrodite + worm_development + WBls:0000058 + pre-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -2031,18 +2085,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - jl16 - 2015-03-19T10:44:40Z - worm_development - WBls:0000059 - parasitic nematode stage + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + jl16 + 2015-03-19T10:44:40Z + worm_development + WBls:0000059 + parasitic nematode stage - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - WB:jl + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + WB:jl @@ -2057,17 +2111,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - reproductive stage adult hermaphrodite - worm_development - WBls:0000060 - reproductive stage adult hermaphrodite Ce + 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. + reproductive stage adult hermaphrodite + worm_development + WBls:0000060 + reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -2082,17 +2136,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - oocyte-laying stage adult hermaphrodite - worm_development - WBls:0000061 - oocyte-laying stage adult hermaphrodite Ce + 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. + oocyte-laying stage adult hermaphrodite + worm_development + WBls:0000061 + oocyte-laying stage adult hermaphrodite Ce - 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 + 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 @@ -2107,17 +2161,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - post-reproductive stage adult hermaphrodite - worm_development - WBls:0000062 - post-reproductive stage adult hermaphrodite Ce + 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. + post-reproductive stage adult hermaphrodite + worm_development + WBls:0000062 + post-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -2132,17 +2186,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 0-24 hours after L4-adult molt. - newly molted young adult hermaphrodite - worm_development - WBls:0000063 - newly molted young adult hermaphrodite Ce + At 20 Centigrade: 0-24 hours after L4-adult molt. + newly molted young adult hermaphrodite + worm_development + WBls:0000063 + newly molted young adult hermaphrodite Ce - At 20 Centigrade: 0-24 hours after L4-adult molt. - WB:wjc + At 20 Centigrade: 0-24 hours after L4-adult molt. + WB:wjc @@ -2157,17 +2211,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - 1-day post-L4 adult hermaphrodite - worm_development - WBls:0000064 - 1-day post-L4 adult hermaphrodite Ce + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + 1-day post-L4 adult hermaphrodite + worm_development + WBls:0000064 + 1-day post-L4 adult hermaphrodite Ce - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - WB:wjc + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + WB:wjc @@ -2188,17 +2242,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - 2-days post-L4 adult hermaphrodite - worm_development - WBls:0000065 - 2-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + 2-days post-L4 adult hermaphrodite + worm_development + WBls:0000065 + 2-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - WB:wjc + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + WB:wjc @@ -2219,17 +2273,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - 3-days post-L4 adult hermaphrodite - worm_development - WBls:0000066 - 3-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + 3-days post-L4 adult hermaphrodite + worm_development + WBls:0000066 + 3-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - WB:wjc + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + WB:wjc @@ -2250,17 +2304,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - 4-days post-L4 adult hermaphrodite - worm_development - WBls:0000067 - 4-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + 4-days post-L4 adult hermaphrodite + worm_development + WBls:0000067 + 4-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - WB:wjc + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + WB:wjc @@ -2281,17 +2335,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - 5-days post-L4 adult hermaphrodite - worm_development - WBls:0000068 - 5-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + 5-days post-L4 adult hermaphrodite + worm_development + WBls:0000068 + 5-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - WB:wjc + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + WB:wjc @@ -2312,17 +2366,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - 4-7 days post-L4 adult hermaphrodite - worm_development - WBls:0000069 - 4-7 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + 4-7 days post-L4 adult hermaphrodite + worm_development + WBls:0000069 + 4-7 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - WB:wjc + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + WB:wjc @@ -2343,17 +2397,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - 7-10 days post-L4 adult hermaphrodite - worm_development - WBls:0000070 - 7-10 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + 7-10 days post-L4 adult hermaphrodite + worm_development + WBls:0000070 + 7-10 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - WB:wjc + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + WB:wjc @@ -2375,17 +2429,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - 8-cell embryo - worm_development - WBls:0000071 - 8-cell embryo Ce + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + 8-cell embryo + worm_development + WBls:0000071 + 8-cell embryo Ce - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - WB:wjc + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + WB:wjc @@ -2407,17 +2461,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - 12-cell embryo - worm_development - WBls:0000072 - 12-cell embryo Ce + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + 12-cell embryo + worm_development + WBls:0000072 + 12-cell embryo Ce - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - WB:wjc + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + WB:wjc @@ -2426,17 +2480,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva male - worm_development - WBls:0000073 - L4 larva male Ce + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva male + worm_development + WBls:0000073 + L4 larva male Ce - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -2463,18 +2517,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - danielaraciti - 2012-05-22T14:35:04Z - worm_development - WBls:0000074 - 11-15 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + danielaraciti + 2012-05-22T14:35:04Z + worm_development + WBls:0000074 + 11-15 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - WB:dr + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + WB:dr @@ -2483,17 +2537,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developemental life stage of a worm - danielaraciti - worm_development - WBls:0000075 - worm life stage + A developemental life stage of a worm + danielaraciti + worm_development + WBls:0000075 + worm life stage - A developemental life stage of a worm - WB:WBPerson2987 + A developemental life stage of a worm + WB:WBPerson2987 @@ -2502,19 +2556,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Any Strongyloides developmental stage, including free-living and parasitic stages. - jl16 - 2015-03-19T10:49:23Z - all stages Strongyloides - worm_development - WBls:0000076 - Strongyloides life stage + Any Strongyloides developmental stage, including free-living and parasitic stages. + jl16 + 2015-03-19T10:49:23Z + all stages Strongyloides + worm_development + WBls:0000076 + Strongyloides life stage - Any Strongyloides developmental stage, including free-living and parasitic stages. - WB:jl + Any Strongyloides developmental stage, including free-living and parasitic stages. + WB:jl @@ -2524,25 +2578,25 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2012-05-30T09:23:44Z - WBls:0000662 - sheathed microfilaria - Brugia immature microfilaria - sheathed microfilaria Bma - worm_development - immature microfilaria Bma - WBls:0000077 - Brugia sheathed microfilaria + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2012-05-30T09:23:44Z + WBls:0000662 + sheathed microfilaria + Brugia immature microfilaria + sheathed microfilaria Bma + worm_development + immature microfilaria Bma + WBls:0000077 + Brugia sheathed microfilaria - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr - WB:mb + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr + WB:mb @@ -2574,21 +2628,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The first stage larva. - danielaraciti - 2012-05-30T09:29:36Z - L1 - L1 larva Bma - worm_development - WBls:0000079 - Brugia L1 + The first stage larva. + danielaraciti + 2012-05-30T09:29:36Z + L1 + L1 larva Bma + worm_development + WBls:0000079 + Brugia L1 - The first stage larva. - WB:dr - WB:mb + The first stage larva. + WB:dr + WB:mb @@ -2609,21 +2663,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2012-05-30T09:30:40Z - L2 - L2 larva Bma - worm_development - WBls:0000080 - Brugia L2 + 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. + danielaraciti + 2012-05-30T09:30:40Z + L2 + L2 larva Bma + worm_development + WBls:0000080 + Brugia L2 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -2644,21 +2698,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The third stage larva. - danielaraciti - 2012-05-30T09:31:06Z - L3 - L3 larva Bma - worm_development - WBls:0000081 - Brugia L3 + The third stage larva. + danielaraciti + 2012-05-30T09:31:06Z + L3 + L3 larva Bma + worm_development + WBls:0000081 + Brugia L3 - The third stage larva. - WB:dr - WB:mb + The third stage larva. + WB:dr + WB:mb @@ -2679,21 +2733,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2012-05-30T09:31:38Z - L4 - L4 larva Bma - worm_development - WBls:0000082 - Brugia L4 + 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. + danielaraciti + 2012-05-30T09:31:38Z + L4 + L4 larva Bma + worm_development + WBls:0000082 + Brugia L4 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -2714,21 +2768,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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). - danielaraciti - 2012-05-30T09:32:18Z - adult - adult Bma - worm_development - WBls:0000083 - Brugia adult + 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). + danielaraciti + 2012-05-30T09:32:18Z + adult + adult Bma + worm_development + WBls:0000083 + Brugia adult - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -2750,21 +2804,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - E-cell has divided into Ea and Ep. Contains 14 cells. - danielaraciti - 2012-10-02T17:15:41Z - 14-cell embryo - worm_development - WBls:0000084 - 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. - 14-cell embryo Ce + E-cell has divided into Ea and Ep. Contains 14 cells. + danielaraciti + 2012-10-02T17:15:41Z + 14-cell embryo + worm_development + WBls:0000084 + 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. + 14-cell embryo Ce - E-cell has divided into Ea and Ep. Contains 14 cells. - WB:WBPaper00046121 - WB:dr + E-cell has divided into Ea and Ep. Contains 14 cells. + WB:WBPaper00046121 + WB:dr @@ -2786,21 +2840,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Fourth cleavage of the AB lineage. Contains 24 cells. - danielaraciti - 2012-10-02T17:23:32Z - 24-cell embryo - worm_development - WBls:0000085 - 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. - 24-cell embryo Ce + Fourth cleavage of the AB lineage. Contains 24 cells. + danielaraciti + 2012-10-02T17:23:32Z + 24-cell embryo + worm_development + WBls:0000085 + 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. + 24-cell embryo Ce - Fourth cleavage of the AB lineage. Contains 24 cells. - WB:WBPaper00046121 - WB:dr + Fourth cleavage of the AB lineage. Contains 24 cells. + WB:WBPaper00046121 + WB:dr @@ -2822,21 +2876,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Fifth cleavage of the AB lineage. Contains 44 cells. - danielaraciti - 2012-10-02T17:25:18Z - 44-cell embryo - worm_development - WBls:0000086 - 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. - 44-cell embryo Ce + Fifth cleavage of the AB lineage. Contains 44 cells. + danielaraciti + 2012-10-02T17:25:18Z + 44-cell embryo + worm_development + WBls:0000086 + 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. + 44-cell embryo Ce - Fifth cleavage of the AB lineage. Contains 44 cells. - WB:WBPaper00046121 - WB:dr + Fifth cleavage of the AB lineage. Contains 44 cells. + WB:WBPaper00046121 + WB:dr @@ -2858,21 +2912,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Sixth cleavage of the AB lineage. Contains 68 cells. - danielaraciti - 2012-10-02T17:26:52Z - 68-cell embryo - worm_development - WBls:0000087 - 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. - 68-cell embryo Ce + Sixth cleavage of the AB lineage. Contains 68 cells. + danielaraciti + 2012-10-02T17:26:52Z + 68-cell embryo + worm_development + WBls:0000087 + 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. + 68-cell embryo Ce - Sixth cleavage of the AB lineage. Contains 68 cells. - WB:WBPaper00046121 - WB:dr + Sixth cleavage of the AB lineage. Contains 68 cells. + WB:WBPaper00046121 + WB:dr @@ -2894,21 +2948,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Seventh cleavage of the AB lineage. Contains 86 cells. - danielaraciti - 2012-10-02T17:27:50Z - 86-cell embryo - worm_development - WBls:0000088 - 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. - 86-cell embryo Ce + Seventh cleavage of the AB lineage. Contains 86 cells. + danielaraciti + 2012-10-02T17:27:50Z + 86-cell embryo + worm_development + WBls:0000088 + 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. + 86-cell embryo Ce - Seventh cleavage of the AB lineage. Contains 86 cells. - WB:WBPaper00046121 - WB:dr + Seventh cleavage of the AB lineage. Contains 86 cells. + WB:WBPaper00046121 + WB:dr @@ -2930,19 +2984,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - P4 and M cells have finished migrating. Contains 190 cells. - danielaraciti - 2012-10-15T13:19:10Z - 190-cells embryo - worm_development - WBls:0000089 - 190-cells embryo Ce + P4 and M cells have finished migrating. Contains 190 cells. + danielaraciti + 2012-10-15T13:19:10Z + 190-cells embryo + worm_development + WBls:0000089 + 190-cells embryo Ce - P4 and M cells have finished migrating. Contains 190 cells. - WB:dr + P4 and M cells have finished migrating. Contains 190 cells. + WB:dr @@ -2964,19 +3018,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - danielaraciti - 2012-10-16T15:37:30Z - 96-cell embryo - worm_development - WBls:0000090 - 96-cell embryo Ce + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + danielaraciti + 2012-10-16T15:37:30Z + 96-cell embryo + worm_development + WBls:0000090 + 96-cell embryo Ce - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - WB:dr + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + WB:dr @@ -2985,21 +3039,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Any Brugia developmental stage, including embryo, larva and adult stage. - danielaraciti - 2013-11-12T03:18:57Z - all stages Bma - worm_development - WBls:0000091 - Brugia life stage + Any Brugia developmental stage, including embryo, larva and adult stage. + danielaraciti + 2013-11-12T03:18:57Z + all stages Bma + worm_development + WBls:0000091 + Brugia life stage - Any Brugia developmental stage, including embryo, larva and adult stage. - WB:dr - WB:jl - WB:mb + Any Brugia developmental stage, including embryo, larva and adult stage. + WB:dr + WB:jl + WB:mb @@ -3009,21 +3063,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - danielaraciti - 2013-11-12T04:48:28Z - embryo - embryo Bma - worm_development - WBls:0000092 - Brugia embryo + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + danielaraciti + 2013-11-12T04:48:28Z + embryo + embryo Bma + worm_development + WBls:0000092 + Brugia embryo - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -3038,21 +3092,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - danielaraciti - 2013-11-12T04:50:29Z - postembryonic stage - postembryonic Bma - worm_development - WBls:0000093 - Brugia postembryonic stage + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + danielaraciti + 2013-11-12T04:50:29Z + postembryonic stage + postembryonic Bma + worm_development + WBls:0000093 + Brugia postembryonic stage - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -3067,21 +3121,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2013-11-12T04:55:53Z - early embryo - early embryo Bma - worm_development - WBls:0000094 - Brugia early embryo + 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. + danielaraciti + 2013-11-12T04:55:53Z + early embryo + early embryo Bma + worm_development + WBls:0000094 + Brugia early embryo - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -3102,21 +3156,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Proliferates from 100 cells to Lima bean stage. - danielaraciti - 2013-11-12T04:59:19Z - middle embryo - middle embryo Bma - worm_development - WBls:0000095 - Brugia middle embryo + Proliferates from 100 cells to Lima bean stage. + danielaraciti + 2013-11-12T04:59:19Z + middle embryo + middle embryo Bma + worm_development + WBls:0000095 + Brugia middle embryo - Proliferates from 100 cells to Lima bean stage. - WB:dr - WB:mb + Proliferates from 100 cells to Lima bean stage. + WB:dr + WB:mb @@ -3137,21 +3191,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - From Lima bean to hatching. - danielaraciti - 2013-11-12T05:00:28Z - late embryo - late embryo Bma - worm_development - WBls:0000096 - Brugia late embryo + From Lima bean to hatching. + danielaraciti + 2013-11-12T05:00:28Z + late embryo + late embryo Bma + worm_development + WBls:0000096 + Brugia late embryo - From Lima bean to hatching. - WB:dr - WB:mb + From Lima bean to hatching. + WB:dr + WB:mb @@ -3172,21 +3226,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - danielaraciti - 2013-11-12T05:12:19Z - larval stage - larva Bma - worm_development - WBls:0000097 - Brugia larval stage + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + danielaraciti + 2013-11-12T05:12:19Z + larval stage + larva Bma + worm_development + WBls:0000097 + Brugia larval stage - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:dr + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:dr @@ -3196,24 +3250,24 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2013-11-12T05:23:54Z - L3i - Brugia vector-derived L3 - vector-derived L3 Bma - worm_development - iL3 - infective L3 - WBls:0000098 - Brugia L3i + 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. + danielaraciti + 2013-11-12T05:23:54Z + L3i + Brugia vector-derived L3 + vector-derived L3 Bma + worm_development + iL3 + infective L3 + WBls:0000098 + Brugia L3i - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -3228,22 +3282,22 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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). - danielaraciti - 2013-11-12T05:24:59Z - post-infection L3 - post-infection L3 Bma - worm_development - piL3 - WBls:0000099 - Brugia post-infection L3 + 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). + danielaraciti + 2013-11-12T05:24:59Z + post-infection L3 + post-infection L3 Bma + worm_development + piL3 + WBls:0000099 + Brugia post-infection L3 - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -3264,21 +3318,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2013-11-12T05:37:52Z - young adult - young adult Bma - worm_development - WBls:0000100 - Brugia young adult + 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. + danielaraciti + 2013-11-12T05:37:52Z + young adult + young adult Bma + worm_development + WBls:0000100 + Brugia young adult - 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 + 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 @@ -3287,21 +3341,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Any developmental stage in a nematode, including embryo, larva and adult stage. - danielaraciti - 2013-11-25T06:13:37Z - all stages nematode - nematode developmental stage - worm_development - WBls:0000101 - Nematode life stage + Any developmental stage in a nematode, including embryo, larva and adult stage. + danielaraciti + 2013-11-25T06:13:37Z + all stages nematode + nematode developmental stage + worm_development + WBls:0000101 + Nematode life stage - Any developmental stage in a nematode, including embryo, larva and adult stage. - WB:dr - WB:jl + Any developmental stage in a nematode, including embryo, larva and adult stage. + WB:dr + WB:jl @@ -3310,21 +3364,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - danielaraciti - 2013-11-25T06:14:14Z - embryo nematode - nematode egg stage - worm_development - WBls:0000102 - nematode embryo + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + danielaraciti + 2013-11-25T06:14:14Z + embryo nematode + nematode egg stage + worm_development + WBls:0000102 + nematode embryo - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -3339,19 +3393,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developemental life stage in a nematode that occurs from egg hatching until death. - danielaraciti - 2013-11-25T06:14:39Z - worm_development - WBls:0000103 - postembryonic nematode + A developemental life stage in a nematode that occurs from egg hatching until death. + danielaraciti + 2013-11-25T06:14:39Z + worm_development + WBls:0000103 + postembryonic nematode - A developemental life stage in a nematode that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a nematode that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -3366,20 +3420,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - danielaraciti - 2013-11-25T06:18:53Z - L5 - adult nematode - worm_development - WBls:0000104 - nematode adult + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + danielaraciti + 2013-11-25T06:18:53Z + L5 + adult nematode + worm_development + WBls:0000104 + nematode adult - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - WB:dr + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + WB:dr @@ -3388,21 +3442,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage that begins after hatching and ends when the nematode becomes adult. - danielaraciti - 2013-11-25T06:19:27Z - larval stage - larva nematode - nematode larva - worm_development - WBls:0000105 - nematode larval stage + The stage that begins after hatching and ends when the nematode becomes adult. + danielaraciti + 2013-11-25T06:19:27Z + larval stage + larva nematode + nematode larva + worm_development + WBls:0000105 + nematode larval stage - The stage that begins after hatching and ends when the nematode becomes adult. - WB:dr + The stage that begins after hatching and ends when the nematode becomes adult. + WB:dr @@ -3411,19 +3465,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The first stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:28Z - L1 larva nematode - worm_development - WBls:0000106 - L1 larval stage + The first stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:28Z + L1 larva nematode + worm_development + WBls:0000106 + L1 larval stage - The first stage larva of nematodes. - WB:dr + The first stage larva of nematodes. + WB:dr @@ -3438,19 +3492,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The second stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:54Z - L2 larva nematode - worm_development - WBls:0000107 - L2 larval stage + The second stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:54Z + L2 larva nematode + worm_development + WBls:0000107 + L2 larval stage - The second stage larva of nematodes. - WB:dr + The second stage larva of nematodes. + WB:dr @@ -3465,19 +3519,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The third stage larva of nematodes. - danielaraciti - 2013-11-25T06:21:33Z - L3 larva nematode - worm_development - WBls:0000108 - L3 larval stage + The third stage larva of nematodes. + danielaraciti + 2013-11-25T06:21:33Z + L3 larva nematode + worm_development + WBls:0000108 + L3 larval stage - The third stage larva of nematodes. - WB:dr + The third stage larva of nematodes. + WB:dr @@ -3492,19 +3546,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The fourth stage larva of nematodes. - danielaraciti - 2013-11-25T06:22:48Z - L4 larva nematode - worm_development - WBls:0000109 - L4 larval stage + The fourth stage larva of nematodes. + danielaraciti + 2013-11-25T06:22:48Z + L4 larva nematode + worm_development + WBls:0000109 + L4 larval stage - The fourth stage larva of nematodes. - WB:dr + The fourth stage larva of nematodes. + WB:dr @@ -3513,21 +3567,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2013-11-25T06:23:23Z - sheathed microfilaria nematode - sheathed microfilariae - worm_development - WBls:0000110 - sheathed microfilaria + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2013-11-25T06:23:23Z + sheathed microfilaria nematode + sheathed microfilariae + worm_development + WBls:0000110 + sheathed microfilaria - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr @@ -3554,18 +3608,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - danielaraciti - 16-18 days post-L4 adult hermaphrodite - worm_development - WBls:0000111 - 16-18 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + danielaraciti + 16-18 days post-L4 adult hermaphrodite + worm_development + WBls:0000111 + 16-18 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - WB:dr + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + WB:dr @@ -3581,20 +3635,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 1 min post first-cleavage - worm_development - WBls:0000112 - 1 min post first-cleavage Ce + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 1 min post first-cleavage + worm_development + WBls:0000112 + 1 min post first-cleavage Ce - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3616,20 +3670,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 2 min post first-cleavage - worm_development - WBls:0000113 - 2 min post first-cleavage Ce + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 2 min post first-cleavage + worm_development + WBls:0000113 + 2 min post first-cleavage Ce - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3651,20 +3705,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 3 min post first-cleavage - worm_development - WBls:0000114 - 3 min post first-cleavage Ce + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 3 min post first-cleavage + worm_development + WBls:0000114 + 3 min post first-cleavage Ce - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3686,20 +3740,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 4 min post first-cleavage - worm_development - WBls:0000115 - 4 min post first-cleavage Ce + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 4 min post first-cleavage + worm_development + WBls:0000115 + 4 min post first-cleavage Ce - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3721,20 +3775,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 5 min post first-cleavage - worm_development - WBls:0000116 - 5 min post first-cleavage Ce + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 5 min post first-cleavage + worm_development + WBls:0000116 + 5 min post first-cleavage Ce - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3756,20 +3810,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 6 min post first-cleavage - worm_development - WBls:0000117 - 6 min post first-cleavage Ce + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 6 min post first-cleavage + worm_development + WBls:0000117 + 6 min post first-cleavage Ce - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3791,20 +3845,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 7 min post first-cleavage - worm_development - WBls:0000118 - 7 min post first-cleavage Ce + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 7 min post first-cleavage + worm_development + WBls:0000118 + 7 min post first-cleavage Ce - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3826,20 +3880,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 8 min post first-cleavage - worm_development - WBls:0000119 - 8 min post first-cleavage Ce + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 8 min post first-cleavage + worm_development + WBls:0000119 + 8 min post first-cleavage Ce - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3861,20 +3915,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 9 min post first-cleavage - worm_development - WBls:0000120 - 9 min post first-cleavage Ce + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 9 min post first-cleavage + worm_development + WBls:0000120 + 9 min post first-cleavage Ce - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3896,20 +3950,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 10 min post first-cleavage - worm_development - WBls:0000121 - 10 min post first-cleavage Ce + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 10 min post first-cleavage + worm_development + WBls:0000121 + 10 min post first-cleavage Ce - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3931,20 +3985,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 11 min post first-cleavage - worm_development - WBls:0000122 - 11 min post first-cleavage Ce + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 11 min post first-cleavage + worm_development + WBls:0000122 + 11 min post first-cleavage Ce - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -3966,20 +4020,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 12 min post first-cleavage - worm_development - WBls:0000123 - 12 min post first-cleavage Ce + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 12 min post first-cleavage + worm_development + WBls:0000123 + 12 min post first-cleavage Ce - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4001,20 +4055,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 13 min post first-cleavage - worm_development - WBls:0000124 - 13 min post first-cleavage Ce + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 13 min post first-cleavage + worm_development + WBls:0000124 + 13 min post first-cleavage Ce - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4036,20 +4090,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 14 min post first-cleavage - worm_development - WBls:0000125 - 14 min post first-cleavage Ce + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 14 min post first-cleavage + worm_development + WBls:0000125 + 14 min post first-cleavage Ce - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4071,20 +4125,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 15 min post first-cleavage - worm_development - WBls:0000126 - 15 min post first-cleavage Ce + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 15 min post first-cleavage + worm_development + WBls:0000126 + 15 min post first-cleavage Ce - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4106,20 +4160,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 16 min post first-cleavage - worm_development - WBls:0000127 - 16 min post first-cleavage Ce + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 16 min post first-cleavage + worm_development + WBls:0000127 + 16 min post first-cleavage Ce - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4141,20 +4195,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 17 min post first-cleavage - worm_development - WBls:0000128 - 17 min post first-cleavage Ce + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 17 min post first-cleavage + worm_development + WBls:0000128 + 17 min post first-cleavage Ce - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4176,20 +4230,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 18 min post first-cleavage - worm_development - WBls:0000129 - 18 min post first-cleavage Ce + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 18 min post first-cleavage + worm_development + WBls:0000129 + 18 min post first-cleavage Ce - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4211,20 +4265,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 19 min post first-cleavage - worm_development - WBls:0000130 - 19 min post first-cleavage Ce + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 19 min post first-cleavage + worm_development + WBls:0000130 + 19 min post first-cleavage Ce - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4246,20 +4300,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 20 min post first-cleavage - worm_development - WBls:0000131 - 20 min post first-cleavage Ce + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 20 min post first-cleavage + worm_development + WBls:0000131 + 20 min post first-cleavage Ce - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4281,20 +4335,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 21 min post first-cleavage - worm_development - WBls:0000132 - 21 min post first-cleavage Ce + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 21 min post first-cleavage + worm_development + WBls:0000132 + 21 min post first-cleavage Ce - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4316,20 +4370,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 22 min post first-cleavage - worm_development - WBls:0000133 - 22 min post first-cleavage Ce + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 22 min post first-cleavage + worm_development + WBls:0000133 + 22 min post first-cleavage Ce - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4351,20 +4405,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 23 min post first-cleavage - worm_development - WBls:0000134 - 23 min post first-cleavage Ce + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 23 min post first-cleavage + worm_development + WBls:0000134 + 23 min post first-cleavage Ce - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4386,20 +4440,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 24 min post first-cleavage - worm_development - WBls:0000135 - 24 min post first-cleavage Ce + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 24 min post first-cleavage + worm_development + WBls:0000135 + 24 min post first-cleavage Ce - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4421,20 +4475,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 25 min post first-cleavage - worm_development - WBls:0000136 - 25 min post first-cleavage Ce + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 25 min post first-cleavage + worm_development + WBls:0000136 + 25 min post first-cleavage Ce - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4456,20 +4510,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 26 min post first-cleavage - worm_development - WBls:0000137 - 26 min post first-cleavage Ce + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 26 min post first-cleavage + worm_development + WBls:0000137 + 26 min post first-cleavage Ce - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4491,20 +4545,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 27 min post first-cleavage - worm_development - WBls:0000138 - 27 min post first-cleavage Ce + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 27 min post first-cleavage + worm_development + WBls:0000138 + 27 min post first-cleavage Ce - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4526,20 +4580,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 28 min post first-cleavage - worm_development - WBls:0000139 - 28 min post first-cleavage Ce + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 28 min post first-cleavage + worm_development + WBls:0000139 + 28 min post first-cleavage Ce - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4561,20 +4615,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 29 min post first-cleavage - worm_development - WBls:0000140 - 29 min post first-cleavage Ce + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 29 min post first-cleavage + worm_development + WBls:0000140 + 29 min post first-cleavage Ce - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4596,20 +4650,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 30 min post first-cleavage - worm_development - WBls:0000141 - 30 min post first-cleavage Ce + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 30 min post first-cleavage + worm_development + WBls:0000141 + 30 min post first-cleavage Ce - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4631,20 +4685,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 31 min post first-cleavage - worm_development - WBls:0000142 - 31 min post first-cleavage Ce + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 31 min post first-cleavage + worm_development + WBls:0000142 + 31 min post first-cleavage Ce - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4666,20 +4720,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 32 min post first-cleavage - worm_development - WBls:0000143 - 32 min post first-cleavage Ce + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 32 min post first-cleavage + worm_development + WBls:0000143 + 32 min post first-cleavage Ce - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4701,20 +4755,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 33 min post first-cleavage - worm_development - WBls:0000144 - 33 min post first-cleavage Ce + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 33 min post first-cleavage + worm_development + WBls:0000144 + 33 min post first-cleavage Ce - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4736,20 +4790,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 34 min post first-cleavage - worm_development - WBls:0000145 - 34 min post first-cleavage Ce + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 34 min post first-cleavage + worm_development + WBls:0000145 + 34 min post first-cleavage Ce - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4771,20 +4825,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 35 min post first-cleavage - worm_development - WBls:0000146 - 35 min post first-cleavage Ce + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 35 min post first-cleavage + worm_development + WBls:0000146 + 35 min post first-cleavage Ce - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4806,20 +4860,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 36 min post first-cleavage - worm_development - WBls:0000147 - 36 min post first-cleavage Ce + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 36 min post first-cleavage + worm_development + WBls:0000147 + 36 min post first-cleavage Ce - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4841,20 +4895,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 37 min post first-cleavage - worm_development - WBls:0000148 - 37 min post first-cleavage Ce + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 37 min post first-cleavage + worm_development + WBls:0000148 + 37 min post first-cleavage Ce - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4876,20 +4930,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 38 min post first-cleavage - worm_development - WBls:0000149 - 38 min post first-cleavage Ce + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 38 min post first-cleavage + worm_development + WBls:0000149 + 38 min post first-cleavage Ce - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4911,20 +4965,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 39 min post first-cleavage - worm_development - WBls:0000150 - 39 min post first-cleavage Ce + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 39 min post first-cleavage + worm_development + WBls:0000150 + 39 min post first-cleavage Ce - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4946,20 +5000,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 40 min post first-cleavage - worm_development - WBls:0000151 - 40 min post first-cleavage Ce + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 40 min post first-cleavage + worm_development + WBls:0000151 + 40 min post first-cleavage Ce - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -4981,20 +5035,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 41 min post first-cleavage - worm_development - WBls:0000152 - 41 min post first-cleavage Ce + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 41 min post first-cleavage + worm_development + WBls:0000152 + 41 min post first-cleavage Ce - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5016,20 +5070,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 42 min post first-cleavage - worm_development - WBls:0000153 - 42 min post first-cleavage Ce + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 42 min post first-cleavage + worm_development + WBls:0000153 + 42 min post first-cleavage Ce - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5051,20 +5105,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 43 min post first-cleavage - worm_development - WBls:0000154 - 43 min post first-cleavage Ce + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 43 min post first-cleavage + worm_development + WBls:0000154 + 43 min post first-cleavage Ce - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5086,20 +5140,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 44 min post first-cleavage - worm_development - WBls:0000155 - 44 min post first-cleavage Ce + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 44 min post first-cleavage + worm_development + WBls:0000155 + 44 min post first-cleavage Ce - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5121,20 +5175,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 45 min post first-cleavage - worm_development - WBls:0000156 - 45 min post first-cleavage Ce + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 45 min post first-cleavage + worm_development + WBls:0000156 + 45 min post first-cleavage Ce - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5156,20 +5210,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 46 min post first-cleavage - worm_development - WBls:0000157 - 46 min post first-cleavage Ce + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 46 min post first-cleavage + worm_development + WBls:0000157 + 46 min post first-cleavage Ce - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5191,20 +5245,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 47 min post first-cleavage - worm_development - WBls:0000158 - 47 min post first-cleavage Ce + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 47 min post first-cleavage + worm_development + WBls:0000158 + 47 min post first-cleavage Ce - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5226,20 +5280,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 48 min post first-cleavage - worm_development - WBls:0000159 - 48 min post first-cleavage Ce + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 48 min post first-cleavage + worm_development + WBls:0000159 + 48 min post first-cleavage Ce - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5261,20 +5315,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 49 min post first-cleavage - worm_development - WBls:0000160 - 49 min post first-cleavage Ce + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 49 min post first-cleavage + worm_development + WBls:0000160 + 49 min post first-cleavage Ce - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5296,20 +5350,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 50 min post first-cleavage - worm_development - WBls:0000161 - 50 min post first-cleavage Ce + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 50 min post first-cleavage + worm_development + WBls:0000161 + 50 min post first-cleavage Ce - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5331,20 +5385,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 51 min post first-cleavage - worm_development - WBls:0000162 - 51 min post first-cleavage Ce + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 51 min post first-cleavage + worm_development + WBls:0000162 + 51 min post first-cleavage Ce - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5366,20 +5420,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 52 min post first-cleavage - worm_development - WBls:0000163 - 52 min post first-cleavage Ce + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 52 min post first-cleavage + worm_development + WBls:0000163 + 52 min post first-cleavage Ce - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5401,20 +5455,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 53 min post first-cleavage - worm_development - WBls:0000164 - 53 min post first-cleavage Ce + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 53 min post first-cleavage + worm_development + WBls:0000164 + 53 min post first-cleavage Ce - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5436,20 +5490,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 54 min post first-cleavage - worm_development - WBls:0000165 - 54 min post first-cleavage Ce + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 54 min post first-cleavage + worm_development + WBls:0000165 + 54 min post first-cleavage Ce - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5471,20 +5525,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 55 min post first-cleavage - worm_development - WBls:0000166 - 55 min post first-cleavage Ce + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 55 min post first-cleavage + worm_development + WBls:0000166 + 55 min post first-cleavage Ce - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5506,20 +5560,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 56 min post first-cleavage - worm_development - WBls:0000167 - 56 min post first-cleavage Ce + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 56 min post first-cleavage + worm_development + WBls:0000167 + 56 min post first-cleavage Ce - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5541,20 +5595,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 57 min post first-cleavage - worm_development - WBls:0000168 - 57 min post first-cleavage Ce + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 57 min post first-cleavage + worm_development + WBls:0000168 + 57 min post first-cleavage Ce - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5576,20 +5630,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 58 min post first-cleavage - worm_development - WBls:0000169 - 58 min post first-cleavage Ce + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 58 min post first-cleavage + worm_development + WBls:0000169 + 58 min post first-cleavage Ce - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5611,20 +5665,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 59 min post first-cleavage - worm_development - WBls:0000170 - 59 min post first-cleavage Ce + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 59 min post first-cleavage + worm_development + WBls:0000170 + 59 min post first-cleavage Ce - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5646,20 +5700,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 60 min post first-cleavage - worm_development - WBls:0000171 - 60 min post first-cleavage Ce + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 60 min post first-cleavage + worm_development + WBls:0000171 + 60 min post first-cleavage Ce - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5681,20 +5735,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 61 min post first-cleavage - worm_development - WBls:0000172 - 61 min post first-cleavage Ce + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 61 min post first-cleavage + worm_development + WBls:0000172 + 61 min post first-cleavage Ce - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5716,20 +5770,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 62 min post first-cleavage - worm_development - WBls:0000173 - 62 min post first-cleavage Ce + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 62 min post first-cleavage + worm_development + WBls:0000173 + 62 min post first-cleavage Ce - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5751,20 +5805,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 63 min post first-cleavage - worm_development - WBls:0000174 - 63 min post first-cleavage Ce + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 63 min post first-cleavage + worm_development + WBls:0000174 + 63 min post first-cleavage Ce - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5786,20 +5840,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 64 min post first-cleavage - worm_development - WBls:0000175 - 64 min post first-cleavage Ce + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 64 min post first-cleavage + worm_development + WBls:0000175 + 64 min post first-cleavage Ce - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5821,20 +5875,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 65 min post first-cleavage - worm_development - WBls:0000176 - 65 min post first-cleavage Ce + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 65 min post first-cleavage + worm_development + WBls:0000176 + 65 min post first-cleavage Ce - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5856,20 +5910,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 66 min post first-cleavage - worm_development - WBls:0000177 - 66 min post first-cleavage Ce + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 66 min post first-cleavage + worm_development + WBls:0000177 + 66 min post first-cleavage Ce - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5891,20 +5945,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 67 min post first-cleavage - worm_development - WBls:0000178 - 67 min post first-cleavage Ce + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 67 min post first-cleavage + worm_development + WBls:0000178 + 67 min post first-cleavage Ce - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5926,20 +5980,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 68 min post first-cleavage - worm_development - WBls:0000179 - 68 min post first-cleavage Ce + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 68 min post first-cleavage + worm_development + WBls:0000179 + 68 min post first-cleavage Ce - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5961,20 +6015,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 69 min post first-cleavage - worm_development - WBls:0000180 - 69 min post first-cleavage Ce + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 69 min post first-cleavage + worm_development + WBls:0000180 + 69 min post first-cleavage Ce - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -5996,20 +6050,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 70 min post first-cleavage - worm_development - WBls:0000181 - 70 min post first-cleavage Ce + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 70 min post first-cleavage + worm_development + WBls:0000181 + 70 min post first-cleavage Ce - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6031,20 +6085,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 71 min post first-cleavage - worm_development - WBls:0000182 - 71 min post first-cleavage Ce + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 71 min post first-cleavage + worm_development + WBls:0000182 + 71 min post first-cleavage Ce - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6066,20 +6120,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 72 min post first-cleavage - worm_development - WBls:0000183 - 72 min post first-cleavage Ce + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 72 min post first-cleavage + worm_development + WBls:0000183 + 72 min post first-cleavage Ce - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6101,20 +6155,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 73 min post first-cleavage - worm_development - WBls:0000184 - 73 min post first-cleavage Ce + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 73 min post first-cleavage + worm_development + WBls:0000184 + 73 min post first-cleavage Ce - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6136,20 +6190,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 74 min post first-cleavage - worm_development - WBls:0000185 - 74 min post first-cleavage Ce + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 74 min post first-cleavage + worm_development + WBls:0000185 + 74 min post first-cleavage Ce - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6171,20 +6225,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 75 min post first-cleavage - worm_development - WBls:0000186 - 75 min post first-cleavage Ce + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 75 min post first-cleavage + worm_development + WBls:0000186 + 75 min post first-cleavage Ce - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6206,20 +6260,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 76 min post first-cleavage - worm_development - WBls:0000187 - 76 min post first-cleavage Ce + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 76 min post first-cleavage + worm_development + WBls:0000187 + 76 min post first-cleavage Ce - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6241,20 +6295,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 77 min post first-cleavage - worm_development - WBls:0000188 - 77 min post first-cleavage Ce + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 77 min post first-cleavage + worm_development + WBls:0000188 + 77 min post first-cleavage Ce - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6276,20 +6330,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 78 min post first-cleavage - worm_development - WBls:0000189 - 78 min post first-cleavage Ce + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 78 min post first-cleavage + worm_development + WBls:0000189 + 78 min post first-cleavage Ce - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6311,20 +6365,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 79 min post first-cleavage - worm_development - WBls:0000190 - 79 min post first-cleavage Ce + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 79 min post first-cleavage + worm_development + WBls:0000190 + 79 min post first-cleavage Ce - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6346,20 +6400,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 80 min post first-cleavage - worm_development - WBls:0000191 - 80 min post first-cleavage Ce + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 80 min post first-cleavage + worm_development + WBls:0000191 + 80 min post first-cleavage Ce - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6381,20 +6435,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 81 min post first-cleavage - worm_development - WBls:0000192 - 81 min post first-cleavage Ce + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 81 min post first-cleavage + worm_development + WBls:0000192 + 81 min post first-cleavage Ce - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6416,20 +6470,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 82 min post first-cleavage - worm_development - WBls:0000193 - 82 min post first-cleavage Ce + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 82 min post first-cleavage + worm_development + WBls:0000193 + 82 min post first-cleavage Ce - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6451,20 +6505,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 83 min post first-cleavage - worm_development - WBls:0000194 - 83 min post first-cleavage Ce + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 83 min post first-cleavage + worm_development + WBls:0000194 + 83 min post first-cleavage Ce - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6486,20 +6540,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 84 min post first-cleavage - worm_development - WBls:0000195 - 84 min post first-cleavage Ce + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 84 min post first-cleavage + worm_development + WBls:0000195 + 84 min post first-cleavage Ce - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6521,20 +6575,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 85 min post first-cleavage - worm_development - WBls:0000196 - 85 min post first-cleavage Ce + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 85 min post first-cleavage + worm_development + WBls:0000196 + 85 min post first-cleavage Ce - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6556,20 +6610,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 86 min post first-cleavage - worm_development - WBls:0000197 - 86 min post first-cleavage Ce + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 86 min post first-cleavage + worm_development + WBls:0000197 + 86 min post first-cleavage Ce - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6591,20 +6645,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 87 min post first-cleavage - worm_development - WBls:0000198 - 87 min post first-cleavage Ce + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 87 min post first-cleavage + worm_development + WBls:0000198 + 87 min post first-cleavage Ce - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6626,20 +6680,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 88 min post first-cleavage - worm_development - WBls:0000199 - 88 min post first-cleavage Ce + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 88 min post first-cleavage + worm_development + WBls:0000199 + 88 min post first-cleavage Ce - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6661,20 +6715,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 89 min post first-cleavage - worm_development - WBls:0000200 - 89 min post first-cleavage Ce + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 89 min post first-cleavage + worm_development + WBls:0000200 + 89 min post first-cleavage Ce - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6696,20 +6750,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 90 min post first-cleavage - worm_development - WBls:0000201 - 90 min post first-cleavage Ce + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 90 min post first-cleavage + worm_development + WBls:0000201 + 90 min post first-cleavage Ce - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6731,20 +6785,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 91 min post first-cleavage - worm_development - WBls:0000202 - 91 min post first-cleavage Ce + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 91 min post first-cleavage + worm_development + WBls:0000202 + 91 min post first-cleavage Ce - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6766,20 +6820,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 92 min post first-cleavage - worm_development - WBls:0000203 - 92 min post first-cleavage Ce + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 92 min post first-cleavage + worm_development + WBls:0000203 + 92 min post first-cleavage Ce - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6801,20 +6855,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 93 min post first-cleavage - worm_development - WBls:0000204 - 93 min post first-cleavage Ce + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 93 min post first-cleavage + worm_development + WBls:0000204 + 93 min post first-cleavage Ce - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6836,20 +6890,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 94 min post first-cleavage - worm_development - WBls:0000205 - 94 min post first-cleavage Ce + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 94 min post first-cleavage + worm_development + WBls:0000205 + 94 min post first-cleavage Ce - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6871,20 +6925,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 95 min post first-cleavage - worm_development - WBls:0000206 - 95 min post first-cleavage Ce + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 95 min post first-cleavage + worm_development + WBls:0000206 + 95 min post first-cleavage Ce - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6906,20 +6960,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 96 min post first-cleavage - worm_development - WBls:0000207 - 96 min post first-cleavage Ce + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 96 min post first-cleavage + worm_development + WBls:0000207 + 96 min post first-cleavage Ce - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6941,20 +6995,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 97 min post first-cleavage - worm_development - WBls:0000208 - 97 min post first-cleavage Ce + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 97 min post first-cleavage + worm_development + WBls:0000208 + 97 min post first-cleavage Ce - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6976,20 +7030,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 98 min post first-cleavage - worm_development - WBls:0000209 - 98 min post first-cleavage Ce + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 98 min post first-cleavage + worm_development + WBls:0000209 + 98 min post first-cleavage Ce - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7011,20 +7065,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 99 min post first-cleavage - worm_development - WBls:0000210 - 99 min post first-cleavage Ce + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 99 min post first-cleavage + worm_development + WBls:0000210 + 99 min post first-cleavage Ce - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7046,20 +7100,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 100 min post first-cleavage - worm_development - WBls:0000211 - 100 min post first-cleavage Ce + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 100 min post first-cleavage + worm_development + WBls:0000211 + 100 min post first-cleavage Ce - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7081,20 +7135,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 101 min post first-cleavage - worm_development - WBls:0000212 - 101 min post first-cleavage Ce + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 101 min post first-cleavage + worm_development + WBls:0000212 + 101 min post first-cleavage Ce - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7116,20 +7170,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 102 min post first-cleavage - worm_development - WBls:0000213 - 102 min post first-cleavage Ce + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 102 min post first-cleavage + worm_development + WBls:0000213 + 102 min post first-cleavage Ce - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7151,20 +7205,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 103 min post first-cleavage - worm_development - WBls:0000214 - 103 min post first-cleavage Ce + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 103 min post first-cleavage + worm_development + WBls:0000214 + 103 min post first-cleavage Ce - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7186,20 +7240,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 104 min post first-cleavage - worm_development - WBls:0000215 - 104 min post first-cleavage Ce + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 104 min post first-cleavage + worm_development + WBls:0000215 + 104 min post first-cleavage Ce - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7221,20 +7275,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 105 min post first-cleavage - worm_development - WBls:0000216 - 105 min post first-cleavage Ce + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 105 min post first-cleavage + worm_development + WBls:0000216 + 105 min post first-cleavage Ce - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7256,20 +7310,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 106 min post first-cleavage - worm_development - WBls:0000217 - 106 min post first-cleavage Ce + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 106 min post first-cleavage + worm_development + WBls:0000217 + 106 min post first-cleavage Ce - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7291,20 +7345,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 107 min post first-cleavage - worm_development - WBls:0000218 - 107 min post first-cleavage Ce + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 107 min post first-cleavage + worm_development + WBls:0000218 + 107 min post first-cleavage Ce - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7326,20 +7380,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 108 min post first-cleavage - worm_development - WBls:0000219 - 108 min post first-cleavage Ce + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 108 min post first-cleavage + worm_development + WBls:0000219 + 108 min post first-cleavage Ce - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7361,20 +7415,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 109 min post first-cleavage - worm_development - WBls:0000220 - 109 min post first-cleavage Ce + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 109 min post first-cleavage + worm_development + WBls:0000220 + 109 min post first-cleavage Ce - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7396,20 +7450,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 110 min post first-cleavage - worm_development - WBls:0000221 - 110 min post first-cleavage Ce + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 110 min post first-cleavage + worm_development + WBls:0000221 + 110 min post first-cleavage Ce - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7431,20 +7485,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 111 min post first-cleavage - worm_development - WBls:0000222 - 111 min post first-cleavage Ce + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 111 min post first-cleavage + worm_development + WBls:0000222 + 111 min post first-cleavage Ce - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7466,20 +7520,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 112 min post first-cleavage - worm_development - WBls:0000223 - 112 min post first-cleavage Ce + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 112 min post first-cleavage + worm_development + WBls:0000223 + 112 min post first-cleavage Ce - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7501,20 +7555,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 113 min post first-cleavage - worm_development - WBls:0000224 - 113 min post first-cleavage Ce + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 113 min post first-cleavage + worm_development + WBls:0000224 + 113 min post first-cleavage Ce - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7536,20 +7590,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 114 min post first-cleavage - worm_development - WBls:0000225 - 114 min post first-cleavage Ce + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 114 min post first-cleavage + worm_development + WBls:0000225 + 114 min post first-cleavage Ce - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7571,20 +7625,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 115 min post first-cleavage - worm_development - WBls:0000226 - 115 min post first-cleavage Ce + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 115 min post first-cleavage + worm_development + WBls:0000226 + 115 min post first-cleavage Ce - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7606,20 +7660,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 116 min post first-cleavage - worm_development - WBls:0000227 - 116 min post first-cleavage Ce + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 116 min post first-cleavage + worm_development + WBls:0000227 + 116 min post first-cleavage Ce - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7641,20 +7695,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 117 min post first-cleavage - worm_development - WBls:0000228 - 117 min post first-cleavage Ce + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 117 min post first-cleavage + worm_development + WBls:0000228 + 117 min post first-cleavage Ce - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7676,20 +7730,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 118 min post first-cleavage - worm_development - WBls:0000229 - 118 min post first-cleavage Ce + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 118 min post first-cleavage + worm_development + WBls:0000229 + 118 min post first-cleavage Ce - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7711,20 +7765,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 119 min post first-cleavage - worm_development - WBls:0000230 - 119 min post first-cleavage Ce + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 119 min post first-cleavage + worm_development + WBls:0000230 + 119 min post first-cleavage Ce - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7746,20 +7800,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 120 min post first-cleavage - worm_development - WBls:0000231 - 120 min post first-cleavage Ce + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 120 min post first-cleavage + worm_development + WBls:0000231 + 120 min post first-cleavage Ce - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7781,20 +7835,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 121 min post first-cleavage - worm_development - WBls:0000232 - 121 min post first-cleavage Ce + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 121 min post first-cleavage + worm_development + WBls:0000232 + 121 min post first-cleavage Ce - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7816,20 +7870,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 122 min post first-cleavage - worm_development - WBls:0000233 - 122 min post first-cleavage Ce + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 122 min post first-cleavage + worm_development + WBls:0000233 + 122 min post first-cleavage Ce - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7851,20 +7905,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 123 min post first-cleavage - worm_development - WBls:0000234 - 123 min post first-cleavage Ce + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 123 min post first-cleavage + worm_development + WBls:0000234 + 123 min post first-cleavage Ce - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7886,20 +7940,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 124 min post first-cleavage - worm_development - WBls:0000235 - 124 min post first-cleavage Ce + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 124 min post first-cleavage + worm_development + WBls:0000235 + 124 min post first-cleavage Ce - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7921,20 +7975,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 125 min post first-cleavage - worm_development - WBls:0000236 - 125 min post first-cleavage Ce + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 125 min post first-cleavage + worm_development + WBls:0000236 + 125 min post first-cleavage Ce - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7956,20 +8010,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 126 min post first-cleavage - worm_development - WBls:0000237 - 126 min post first-cleavage Ce + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 126 min post first-cleavage + worm_development + WBls:0000237 + 126 min post first-cleavage Ce - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7991,20 +8045,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 127 min post first-cleavage - worm_development - WBls:0000238 - 127 min post first-cleavage Ce + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 127 min post first-cleavage + worm_development + WBls:0000238 + 127 min post first-cleavage Ce - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8026,20 +8080,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 128 min post first-cleavage - worm_development - WBls:0000239 - 128 min post first-cleavage Ce + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 128 min post first-cleavage + worm_development + WBls:0000239 + 128 min post first-cleavage Ce - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8061,20 +8115,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 129 min post first-cleavage - worm_development - WBls:0000240 - 129 min post first-cleavage Ce + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 129 min post first-cleavage + worm_development + WBls:0000240 + 129 min post first-cleavage Ce - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8096,20 +8150,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 130 min post first-cleavage - worm_development - WBls:0000241 - 130 min post first-cleavage Ce + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 130 min post first-cleavage + worm_development + WBls:0000241 + 130 min post first-cleavage Ce - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8131,20 +8185,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 131 min post first-cleavage - worm_development - WBls:0000242 - 131 min post first-cleavage Ce + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 131 min post first-cleavage + worm_development + WBls:0000242 + 131 min post first-cleavage Ce - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8166,20 +8220,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 132 min post first-cleavage - worm_development - WBls:0000243 - 132 min post first-cleavage Ce + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 132 min post first-cleavage + worm_development + WBls:0000243 + 132 min post first-cleavage Ce - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8201,20 +8255,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 133 min post first-cleavage - worm_development - WBls:0000244 - 133 min post first-cleavage Ce + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 133 min post first-cleavage + worm_development + WBls:0000244 + 133 min post first-cleavage Ce - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8236,20 +8290,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 134 min post first-cleavage - worm_development - WBls:0000245 - 134 min post first-cleavage Ce + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 134 min post first-cleavage + worm_development + WBls:0000245 + 134 min post first-cleavage Ce - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8271,20 +8325,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 135 min post first-cleavage - worm_development - WBls:0000246 - 135 min post first-cleavage Ce + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 135 min post first-cleavage + worm_development + WBls:0000246 + 135 min post first-cleavage Ce - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8306,20 +8360,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 136 min post first-cleavage - worm_development - WBls:0000247 - 136 min post first-cleavage Ce + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 136 min post first-cleavage + worm_development + WBls:0000247 + 136 min post first-cleavage Ce - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8341,20 +8395,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 137 min post first-cleavage - worm_development - WBls:0000248 - 137 min post first-cleavage Ce + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 137 min post first-cleavage + worm_development + WBls:0000248 + 137 min post first-cleavage Ce - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8376,20 +8430,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 138 min post first-cleavage - worm_development - WBls:0000249 - 138 min post first-cleavage Ce + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 138 min post first-cleavage + worm_development + WBls:0000249 + 138 min post first-cleavage Ce - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8411,20 +8465,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 139 min post first-cleavage - worm_development - WBls:0000250 - 139 min post first-cleavage Ce + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 139 min post first-cleavage + worm_development + WBls:0000250 + 139 min post first-cleavage Ce - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8446,20 +8500,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 140 min post first-cleavage - worm_development - WBls:0000251 - 140 min post first-cleavage Ce + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 140 min post first-cleavage + worm_development + WBls:0000251 + 140 min post first-cleavage Ce - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8481,20 +8535,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 141 min post first-cleavage - worm_development - WBls:0000252 - 141 min post first-cleavage Ce + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 141 min post first-cleavage + worm_development + WBls:0000252 + 141 min post first-cleavage Ce - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8516,20 +8570,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 142 min post first-cleavage - worm_development - WBls:0000253 - 142 min post first-cleavage Ce + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 142 min post first-cleavage + worm_development + WBls:0000253 + 142 min post first-cleavage Ce - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8551,20 +8605,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 143 min post first-cleavage - worm_development - WBls:0000254 - 143 min post first-cleavage Ce + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 143 min post first-cleavage + worm_development + WBls:0000254 + 143 min post first-cleavage Ce - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8586,20 +8640,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 144 min post first-cleavage - worm_development - WBls:0000255 - 144 min post first-cleavage Ce + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 144 min post first-cleavage + worm_development + WBls:0000255 + 144 min post first-cleavage Ce - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8621,20 +8675,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 145 min post first-cleavage - worm_development - WBls:0000256 - 145 min post first-cleavage Ce + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 145 min post first-cleavage + worm_development + WBls:0000256 + 145 min post first-cleavage Ce - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8656,20 +8710,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 146 min post first-cleavage - worm_development - WBls:0000257 - 146 min post first-cleavage Ce + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 146 min post first-cleavage + worm_development + WBls:0000257 + 146 min post first-cleavage Ce - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8691,20 +8745,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 147 min post first-cleavage - worm_development - WBls:0000258 - 147 min post first-cleavage Ce + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 147 min post first-cleavage + worm_development + WBls:0000258 + 147 min post first-cleavage Ce - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8726,20 +8780,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 148 min post first-cleavage - worm_development - WBls:0000259 - 148 min post first-cleavage Ce + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 148 min post first-cleavage + worm_development + WBls:0000259 + 148 min post first-cleavage Ce - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8761,20 +8815,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 149 min post first-cleavage - worm_development - WBls:0000260 - 149 min post first-cleavage Ce + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 149 min post first-cleavage + worm_development + WBls:0000260 + 149 min post first-cleavage Ce - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8796,20 +8850,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 150 min post first-cleavage - worm_development - WBls:0000261 - 150 min post first-cleavage Ce + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 150 min post first-cleavage + worm_development + WBls:0000261 + 150 min post first-cleavage Ce - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8831,20 +8885,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 151 min post first-cleavage - worm_development - WBls:0000262 - 151 min post first-cleavage Ce + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 151 min post first-cleavage + worm_development + WBls:0000262 + 151 min post first-cleavage Ce - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8866,20 +8920,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 152 min post first-cleavage - worm_development - WBls:0000263 - 152 min post first-cleavage Ce + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 152 min post first-cleavage + worm_development + WBls:0000263 + 152 min post first-cleavage Ce - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8901,20 +8955,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 153 min post first-cleavage - worm_development - WBls:0000264 - 153 min post first-cleavage Ce + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 153 min post first-cleavage + worm_development + WBls:0000264 + 153 min post first-cleavage Ce - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8936,20 +8990,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 154 min post first-cleavage - worm_development - WBls:0000265 - 154 min post first-cleavage Ce + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 154 min post first-cleavage + worm_development + WBls:0000265 + 154 min post first-cleavage Ce - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8971,20 +9025,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 155 min post first-cleavage - worm_development - WBls:0000266 - 155 min post first-cleavage Ce + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 155 min post first-cleavage + worm_development + WBls:0000266 + 155 min post first-cleavage Ce - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9006,20 +9060,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 156 min post first-cleavage - worm_development - WBls:0000267 - 156 min post first-cleavage Ce + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 156 min post first-cleavage + worm_development + WBls:0000267 + 156 min post first-cleavage Ce - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9041,20 +9095,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 157 min post first-cleavage - worm_development - WBls:0000268 - 157 min post first-cleavage Ce + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 157 min post first-cleavage + worm_development + WBls:0000268 + 157 min post first-cleavage Ce - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9076,20 +9130,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 158 min post first-cleavage - worm_development - WBls:0000269 - 158 min post first-cleavage Ce + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 158 min post first-cleavage + worm_development + WBls:0000269 + 158 min post first-cleavage Ce - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9111,20 +9165,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 159 min post first-cleavage - worm_development - WBls:0000270 - 159 min post first-cleavage Ce + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 159 min post first-cleavage + worm_development + WBls:0000270 + 159 min post first-cleavage Ce - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9146,20 +9200,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 160 min post first-cleavage - worm_development - WBls:0000271 - 160 min post first-cleavage Ce + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 160 min post first-cleavage + worm_development + WBls:0000271 + 160 min post first-cleavage Ce - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9181,20 +9235,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 161 min post first-cleavage - worm_development - WBls:0000272 - 161 min post first-cleavage Ce + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 161 min post first-cleavage + worm_development + WBls:0000272 + 161 min post first-cleavage Ce - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9216,20 +9270,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 162 min post first-cleavage - worm_development - WBls:0000273 - 162 min post first-cleavage Ce + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 162 min post first-cleavage + worm_development + WBls:0000273 + 162 min post first-cleavage Ce - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9251,20 +9305,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 163 min post first-cleavage - worm_development - WBls:0000274 - 163 min post first-cleavage Ce + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 163 min post first-cleavage + worm_development + WBls:0000274 + 163 min post first-cleavage Ce - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9286,20 +9340,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 164 min post first-cleavage - worm_development - WBls:0000275 - 164 min post first-cleavage Ce + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 164 min post first-cleavage + worm_development + WBls:0000275 + 164 min post first-cleavage Ce - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9321,20 +9375,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 165 min post first-cleavage - worm_development - WBls:0000276 - 165 min post first-cleavage Ce + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 165 min post first-cleavage + worm_development + WBls:0000276 + 165 min post first-cleavage Ce - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9356,20 +9410,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 166 min post first-cleavage - worm_development - WBls:0000277 - 166 min post first-cleavage Ce + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 166 min post first-cleavage + worm_development + WBls:0000277 + 166 min post first-cleavage Ce - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9391,20 +9445,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 167 min post first-cleavage - worm_development - WBls:0000278 - 167 min post first-cleavage Ce + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 167 min post first-cleavage + worm_development + WBls:0000278 + 167 min post first-cleavage Ce - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9426,20 +9480,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 168 min post first-cleavage - worm_development - WBls:0000279 - 168 min post first-cleavage Ce + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 168 min post first-cleavage + worm_development + WBls:0000279 + 168 min post first-cleavage Ce - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9461,20 +9515,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 169 min post first-cleavage - worm_development - WBls:0000280 - 169 min post first-cleavage Ce + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 169 min post first-cleavage + worm_development + WBls:0000280 + 169 min post first-cleavage Ce - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9496,20 +9550,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 170 min post first-cleavage - worm_development - WBls:0000281 - 170 min post first-cleavage Ce + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 170 min post first-cleavage + worm_development + WBls:0000281 + 170 min post first-cleavage Ce - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9531,20 +9585,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 171 min post first-cleavage - worm_development - WBls:0000282 - 171 min post first-cleavage Ce + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 171 min post first-cleavage + worm_development + WBls:0000282 + 171 min post first-cleavage Ce - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9566,20 +9620,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 172 min post first-cleavage - worm_development - WBls:0000283 - 172 min post first-cleavage Ce + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 172 min post first-cleavage + worm_development + WBls:0000283 + 172 min post first-cleavage Ce - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9601,20 +9655,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 173 min post first-cleavage - worm_development - WBls:0000284 - 173 min post first-cleavage Ce + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 173 min post first-cleavage + worm_development + WBls:0000284 + 173 min post first-cleavage Ce - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9636,20 +9690,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 174 min post first-cleavage - worm_development - WBls:0000285 - 174 min post first-cleavage Ce + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 174 min post first-cleavage + worm_development + WBls:0000285 + 174 min post first-cleavage Ce - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9671,20 +9725,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 175 min post first-cleavage - worm_development - WBls:0000286 - 175 min post first-cleavage Ce + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 175 min post first-cleavage + worm_development + WBls:0000286 + 175 min post first-cleavage Ce - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9706,20 +9760,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 176 min post first-cleavage - worm_development - WBls:0000287 - 176 min post first-cleavage Ce + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 176 min post first-cleavage + worm_development + WBls:0000287 + 176 min post first-cleavage Ce - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9741,20 +9795,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 177 min post first-cleavage - worm_development - WBls:0000288 - 177 min post first-cleavage Ce + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 177 min post first-cleavage + worm_development + WBls:0000288 + 177 min post first-cleavage Ce - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9776,20 +9830,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 178 min post first-cleavage - worm_development - WBls:0000289 - 178 min post first-cleavage Ce + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 178 min post first-cleavage + worm_development + WBls:0000289 + 178 min post first-cleavage Ce - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9811,20 +9865,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 179 min post first-cleavage - worm_development - WBls:0000290 - 179 min post first-cleavage Ce + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 179 min post first-cleavage + worm_development + WBls:0000290 + 179 min post first-cleavage Ce - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9846,20 +9900,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 180 min post first-cleavage - worm_development - WBls:0000291 - 180 min post first-cleavage Ce + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 180 min post first-cleavage + worm_development + WBls:0000291 + 180 min post first-cleavage Ce - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9881,20 +9935,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 181 min post first-cleavage - worm_development - WBls:0000292 - 181 min post first-cleavage Ce + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 181 min post first-cleavage + worm_development + WBls:0000292 + 181 min post first-cleavage Ce - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9916,20 +9970,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 182 min post first-cleavage - worm_development - WBls:0000293 - 182 min post first-cleavage Ce + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 182 min post first-cleavage + worm_development + WBls:0000293 + 182 min post first-cleavage Ce - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9951,20 +10005,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 183 min post first-cleavage - worm_development - WBls:0000294 - 183 min post first-cleavage Ce + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 183 min post first-cleavage + worm_development + WBls:0000294 + 183 min post first-cleavage Ce - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9986,20 +10040,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 184 min post first-cleavage - worm_development - WBls:0000295 - 184 min post first-cleavage Ce + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 184 min post first-cleavage + worm_development + WBls:0000295 + 184 min post first-cleavage Ce - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10021,20 +10075,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 185 min post first-cleavage - worm_development - WBls:0000296 - 185 min post first-cleavage Ce + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 185 min post first-cleavage + worm_development + WBls:0000296 + 185 min post first-cleavage Ce - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10056,20 +10110,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 186 min post first-cleavage - worm_development - WBls:0000297 - 186 min post first-cleavage Ce + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 186 min post first-cleavage + worm_development + WBls:0000297 + 186 min post first-cleavage Ce - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10091,20 +10145,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 187 min post first-cleavage - worm_development - WBls:0000298 - 187 min post first-cleavage Ce + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 187 min post first-cleavage + worm_development + WBls:0000298 + 187 min post first-cleavage Ce - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10126,20 +10180,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 188 min post first-cleavage - worm_development - WBls:0000299 - 188 min post first-cleavage Ce + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 188 min post first-cleavage + worm_development + WBls:0000299 + 188 min post first-cleavage Ce - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10161,20 +10215,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 189 min post first-cleavage - worm_development - WBls:0000300 - 189 min post first-cleavage Ce + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 189 min post first-cleavage + worm_development + WBls:0000300 + 189 min post first-cleavage Ce - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10196,20 +10250,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 190 min post first-cleavage - worm_development - WBls:0000301 - 190 min post first-cleavage Ce + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 190 min post first-cleavage + worm_development + WBls:0000301 + 190 min post first-cleavage Ce - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10231,20 +10285,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 191 min post first-cleavage - worm_development - WBls:0000302 - 191 min post first-cleavage Ce + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 191 min post first-cleavage + worm_development + WBls:0000302 + 191 min post first-cleavage Ce - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10266,20 +10320,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 192 min post first-cleavage - worm_development - WBls:0000303 - 192 min post first-cleavage Ce + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 192 min post first-cleavage + worm_development + WBls:0000303 + 192 min post first-cleavage Ce - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10301,20 +10355,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 193 min post first-cleavage - worm_development - WBls:0000304 - 193 min post first-cleavage Ce + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 193 min post first-cleavage + worm_development + WBls:0000304 + 193 min post first-cleavage Ce - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10336,20 +10390,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 194 min post first-cleavage - worm_development - WBls:0000305 - 194 min post first-cleavage Ce + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 194 min post first-cleavage + worm_development + WBls:0000305 + 194 min post first-cleavage Ce - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10371,20 +10425,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 195 min post first-cleavage - worm_development - WBls:0000306 - 195 min post first-cleavage Ce + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 195 min post first-cleavage + worm_development + WBls:0000306 + 195 min post first-cleavage Ce - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10406,20 +10460,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 196 min post first-cleavage - worm_development - WBls:0000307 - 196 min post first-cleavage Ce + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 196 min post first-cleavage + worm_development + WBls:0000307 + 196 min post first-cleavage Ce - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10441,20 +10495,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 197 min post first-cleavage - worm_development - WBls:0000308 - 197 min post first-cleavage Ce + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 197 min post first-cleavage + worm_development + WBls:0000308 + 197 min post first-cleavage Ce - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10476,20 +10530,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 198 min post first-cleavage - worm_development - WBls:0000309 - 198 min post first-cleavage Ce + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 198 min post first-cleavage + worm_development + WBls:0000309 + 198 min post first-cleavage Ce - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10511,20 +10565,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 199 min post first-cleavage - worm_development - WBls:0000310 - 199 min post first-cleavage Ce + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 199 min post first-cleavage + worm_development + WBls:0000310 + 199 min post first-cleavage Ce - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10546,20 +10600,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 200 min post first-cleavage - worm_development - WBls:0000311 - 200 min post first-cleavage Ce + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 200 min post first-cleavage + worm_development + WBls:0000311 + 200 min post first-cleavage Ce - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10581,20 +10635,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 201 min post first-cleavage - worm_development - WBls:0000312 - 201 min post first-cleavage Ce + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 201 min post first-cleavage + worm_development + WBls:0000312 + 201 min post first-cleavage Ce - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10616,20 +10670,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 202 min post first-cleavage - worm_development - WBls:0000313 - 202 min post first-cleavage Ce + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 202 min post first-cleavage + worm_development + WBls:0000313 + 202 min post first-cleavage Ce - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10651,20 +10705,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 203 min post first-cleavage - worm_development - WBls:0000314 - 203 min post first-cleavage Ce + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 203 min post first-cleavage + worm_development + WBls:0000314 + 203 min post first-cleavage Ce - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10686,20 +10740,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 204 min post first-cleavage - worm_development - WBls:0000315 - 204 min post first-cleavage Ce + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 204 min post first-cleavage + worm_development + WBls:0000315 + 204 min post first-cleavage Ce - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10721,20 +10775,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 205 min post first-cleavage - worm_development - WBls:0000316 - 205 min post first-cleavage Ce + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 205 min post first-cleavage + worm_development + WBls:0000316 + 205 min post first-cleavage Ce - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10756,20 +10810,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 206 min post first-cleavage - worm_development - WBls:0000317 - 206 min post first-cleavage Ce + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 206 min post first-cleavage + worm_development + WBls:0000317 + 206 min post first-cleavage Ce - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10791,20 +10845,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 207 min post first-cleavage - worm_development - WBls:0000318 - 207 min post first-cleavage Ce + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 207 min post first-cleavage + worm_development + WBls:0000318 + 207 min post first-cleavage Ce - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10826,20 +10880,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 208 min post first-cleavage - worm_development - WBls:0000319 - 208 min post first-cleavage Ce + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 208 min post first-cleavage + worm_development + WBls:0000319 + 208 min post first-cleavage Ce - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10861,20 +10915,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 209 min post first-cleavage - worm_development - WBls:0000320 - 209 min post first-cleavage Ce + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 209 min post first-cleavage + worm_development + WBls:0000320 + 209 min post first-cleavage Ce - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10896,20 +10950,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 210 min post first-cleavage - worm_development - WBls:0000321 - 210 min post first-cleavage Ce + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 210 min post first-cleavage + worm_development + WBls:0000321 + 210 min post first-cleavage Ce - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10931,20 +10985,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 211 min post first-cleavage - worm_development - WBls:0000322 - 211 min post first-cleavage Ce + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 211 min post first-cleavage + worm_development + WBls:0000322 + 211 min post first-cleavage Ce - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10966,20 +11020,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 212 min post first-cleavage - worm_development - WBls:0000323 - 212 min post first-cleavage Ce + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 212 min post first-cleavage + worm_development + WBls:0000323 + 212 min post first-cleavage Ce - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11001,20 +11055,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 213 min post first-cleavage - worm_development - WBls:0000324 - 213 min post first-cleavage Ce + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 213 min post first-cleavage + worm_development + WBls:0000324 + 213 min post first-cleavage Ce - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11036,20 +11090,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 214 min post first-cleavage - worm_development - WBls:0000325 - 214 min post first-cleavage Ce + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 214 min post first-cleavage + worm_development + WBls:0000325 + 214 min post first-cleavage Ce - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11071,20 +11125,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 215 min post first-cleavage - worm_development - WBls:0000326 - 215 min post first-cleavage Ce + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 215 min post first-cleavage + worm_development + WBls:0000326 + 215 min post first-cleavage Ce - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11106,20 +11160,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 216 min post first-cleavage - worm_development - WBls:0000327 - 216 min post first-cleavage Ce + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 216 min post first-cleavage + worm_development + WBls:0000327 + 216 min post first-cleavage Ce - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11141,20 +11195,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 217 min post first-cleavage - worm_development - WBls:0000328 - 217 min post first-cleavage Ce + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 217 min post first-cleavage + worm_development + WBls:0000328 + 217 min post first-cleavage Ce - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11176,20 +11230,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 218 min post first-cleavage - worm_development - WBls:0000329 - 218 min post first-cleavage Ce + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 218 min post first-cleavage + worm_development + WBls:0000329 + 218 min post first-cleavage Ce - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11211,20 +11265,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 219 min post first-cleavage - worm_development - WBls:0000330 - 219 min post first-cleavage Ce + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 219 min post first-cleavage + worm_development + WBls:0000330 + 219 min post first-cleavage Ce - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11246,20 +11300,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 220 min post first-cleavage - worm_development - WBls:0000331 - 220 min post first-cleavage Ce + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 220 min post first-cleavage + worm_development + WBls:0000331 + 220 min post first-cleavage Ce - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11281,20 +11335,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 221 min post first-cleavage - worm_development - WBls:0000332 - 221 min post first-cleavage Ce + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 221 min post first-cleavage + worm_development + WBls:0000332 + 221 min post first-cleavage Ce - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11316,20 +11370,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 222 min post first-cleavage - worm_development - WBls:0000333 - 222 min post first-cleavage Ce + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 222 min post first-cleavage + worm_development + WBls:0000333 + 222 min post first-cleavage Ce - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11351,20 +11405,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 223 min post first-cleavage - worm_development - WBls:0000334 - 223 min post first-cleavage Ce + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 223 min post first-cleavage + worm_development + WBls:0000334 + 223 min post first-cleavage Ce - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11386,20 +11440,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 224 min post first-cleavage - worm_development - WBls:0000335 - 224 min post first-cleavage Ce + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 224 min post first-cleavage + worm_development + WBls:0000335 + 224 min post first-cleavage Ce - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11421,20 +11475,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 225 min post first-cleavage - worm_development - WBls:0000336 - 225 min post first-cleavage Ce + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 225 min post first-cleavage + worm_development + WBls:0000336 + 225 min post first-cleavage Ce - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11456,20 +11510,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 226 min post first-cleavage - worm_development - WBls:0000337 - 226 min post first-cleavage Ce + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 226 min post first-cleavage + worm_development + WBls:0000337 + 226 min post first-cleavage Ce - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11491,20 +11545,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 227 min post first-cleavage - worm_development - WBls:0000338 - 227 min post first-cleavage Ce + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 227 min post first-cleavage + worm_development + WBls:0000338 + 227 min post first-cleavage Ce - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11526,20 +11580,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 228 min post first-cleavage - worm_development - WBls:0000339 - 228 min post first-cleavage Ce + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 228 min post first-cleavage + worm_development + WBls:0000339 + 228 min post first-cleavage Ce - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11561,20 +11615,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 229 min post first-cleavage - worm_development - WBls:0000340 - 229 min post first-cleavage Ce + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 229 min post first-cleavage + worm_development + WBls:0000340 + 229 min post first-cleavage Ce - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11596,20 +11650,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 230 min post first-cleavage - worm_development - WBls:0000341 - 230 min post first-cleavage Ce + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 230 min post first-cleavage + worm_development + WBls:0000341 + 230 min post first-cleavage Ce - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11631,20 +11685,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 231 min post first-cleavage - worm_development - WBls:0000342 - 231 min post first-cleavage Ce + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 231 min post first-cleavage + worm_development + WBls:0000342 + 231 min post first-cleavage Ce - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11666,20 +11720,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 232 min post first-cleavage - worm_development - WBls:0000343 - 232 min post first-cleavage Ce + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 232 min post first-cleavage + worm_development + WBls:0000343 + 232 min post first-cleavage Ce - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11701,20 +11755,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 233 min post first-cleavage - worm_development - WBls:0000344 - 233 min post first-cleavage Ce + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 233 min post first-cleavage + worm_development + WBls:0000344 + 233 min post first-cleavage Ce - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11736,20 +11790,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 234 min post first-cleavage - worm_development - WBls:0000345 - 234 min post first-cleavage Ce + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 234 min post first-cleavage + worm_development + WBls:0000345 + 234 min post first-cleavage Ce - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11771,20 +11825,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 235 min post first-cleavage - worm_development - WBls:0000346 - 235 min post first-cleavage Ce + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 235 min post first-cleavage + worm_development + WBls:0000346 + 235 min post first-cleavage Ce - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11806,20 +11860,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 236 min post first-cleavage - worm_development - WBls:0000347 - 236 min post first-cleavage Ce + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 236 min post first-cleavage + worm_development + WBls:0000347 + 236 min post first-cleavage Ce - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11841,20 +11895,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 237 min post first-cleavage - worm_development - WBls:0000348 - 237 min post first-cleavage Ce + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 237 min post first-cleavage + worm_development + WBls:0000348 + 237 min post first-cleavage Ce - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11876,20 +11930,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 238 min post first-cleavage - worm_development - WBls:0000349 - 238 min post first-cleavage Ce + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 238 min post first-cleavage + worm_development + WBls:0000349 + 238 min post first-cleavage Ce - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11911,20 +11965,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 239 min post first-cleavage - worm_development - WBls:0000350 - 239 min post first-cleavage Ce + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 239 min post first-cleavage + worm_development + WBls:0000350 + 239 min post first-cleavage Ce - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11946,20 +12000,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 240 min post first-cleavage - worm_development - WBls:0000351 - 240 min post first-cleavage Ce + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 240 min post first-cleavage + worm_development + WBls:0000351 + 240 min post first-cleavage Ce - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11981,20 +12035,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 241 min post first-cleavage - worm_development - WBls:0000352 - 241 min post first-cleavage Ce + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 241 min post first-cleavage + worm_development + WBls:0000352 + 241 min post first-cleavage Ce - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12016,20 +12070,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 242 min post first-cleavage - worm_development - WBls:0000353 - 242 min post first-cleavage Ce + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 242 min post first-cleavage + worm_development + WBls:0000353 + 242 min post first-cleavage Ce - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12051,20 +12105,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 243 min post first-cleavage - worm_development - WBls:0000354 - 243 min post first-cleavage Ce + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 243 min post first-cleavage + worm_development + WBls:0000354 + 243 min post first-cleavage Ce - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12086,20 +12140,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 244 min post first-cleavage - worm_development - WBls:0000355 - 244 min post first-cleavage Ce + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 244 min post first-cleavage + worm_development + WBls:0000355 + 244 min post first-cleavage Ce - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12121,20 +12175,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 245 min post first-cleavage - worm_development - WBls:0000356 - 245 min post first-cleavage Ce + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 245 min post first-cleavage + worm_development + WBls:0000356 + 245 min post first-cleavage Ce - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12156,20 +12210,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 246 min post first-cleavage - worm_development - WBls:0000357 - 246 min post first-cleavage Ce + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 246 min post first-cleavage + worm_development + WBls:0000357 + 246 min post first-cleavage Ce - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12191,20 +12245,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 247 min post first-cleavage - worm_development - WBls:0000358 - 247 min post first-cleavage Ce + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 247 min post first-cleavage + worm_development + WBls:0000358 + 247 min post first-cleavage Ce - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12226,20 +12280,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 248 min post first-cleavage - worm_development - WBls:0000359 - 248 min post first-cleavage Ce + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 248 min post first-cleavage + worm_development + WBls:0000359 + 248 min post first-cleavage Ce - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12261,20 +12315,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 249 min post first-cleavage - worm_development - WBls:0000360 - 249 min post first-cleavage Ce + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 249 min post first-cleavage + worm_development + WBls:0000360 + 249 min post first-cleavage Ce - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12296,20 +12350,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 250 min post first-cleavage - worm_development - WBls:0000361 - 250 min post first-cleavage Ce + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 250 min post first-cleavage + worm_development + WBls:0000361 + 250 min post first-cleavage Ce - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12331,20 +12385,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 251 min post first-cleavage - worm_development - WBls:0000362 - 251 min post first-cleavage Ce + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 251 min post first-cleavage + worm_development + WBls:0000362 + 251 min post first-cleavage Ce - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12366,20 +12420,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 252 min post first-cleavage - worm_development - WBls:0000363 - 252 min post first-cleavage Ce + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 252 min post first-cleavage + worm_development + WBls:0000363 + 252 min post first-cleavage Ce - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12401,20 +12455,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 253 min post first-cleavage - worm_development - WBls:0000364 - 253 min post first-cleavage Ce + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 253 min post first-cleavage + worm_development + WBls:0000364 + 253 min post first-cleavage Ce - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12436,20 +12490,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 254 min post first-cleavage - worm_development - WBls:0000365 - 254 min post first-cleavage Ce + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 254 min post first-cleavage + worm_development + WBls:0000365 + 254 min post first-cleavage Ce - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12471,20 +12525,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 255 min post first-cleavage - worm_development - WBls:0000366 - 255 min post first-cleavage Ce + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 255 min post first-cleavage + worm_development + WBls:0000366 + 255 min post first-cleavage Ce - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12506,20 +12560,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 256 min post first-cleavage - worm_development - WBls:0000367 - 256 min post first-cleavage Ce + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 256 min post first-cleavage + worm_development + WBls:0000367 + 256 min post first-cleavage Ce - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12541,20 +12595,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 257 min post first-cleavage - worm_development - WBls:0000368 - 257 min post first-cleavage Ce + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 257 min post first-cleavage + worm_development + WBls:0000368 + 257 min post first-cleavage Ce - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12576,20 +12630,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 258 min post first-cleavage - worm_development - WBls:0000369 - 258 min post first-cleavage Ce + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 258 min post first-cleavage + worm_development + WBls:0000369 + 258 min post first-cleavage Ce - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12611,20 +12665,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 259 min post first-cleavage - worm_development - WBls:0000370 - 259 min post first-cleavage Ce + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 259 min post first-cleavage + worm_development + WBls:0000370 + 259 min post first-cleavage Ce - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12646,20 +12700,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 260 min post first-cleavage - worm_development - WBls:0000371 - 260 min post first-cleavage Ce + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 260 min post first-cleavage + worm_development + WBls:0000371 + 260 min post first-cleavage Ce - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12681,20 +12735,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 261 min post first-cleavage - worm_development - WBls:0000372 - 261 min post first-cleavage Ce + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 261 min post first-cleavage + worm_development + WBls:0000372 + 261 min post first-cleavage Ce - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12716,20 +12770,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 262 min post first-cleavage - worm_development - WBls:0000373 - 262 min post first-cleavage Ce + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 262 min post first-cleavage + worm_development + WBls:0000373 + 262 min post first-cleavage Ce - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12751,20 +12805,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 263 min post first-cleavage - worm_development - WBls:0000374 - 263 min post first-cleavage Ce + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 263 min post first-cleavage + worm_development + WBls:0000374 + 263 min post first-cleavage Ce - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12786,20 +12840,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 264 min post first-cleavage - worm_development - WBls:0000375 - 264 min post first-cleavage Ce + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 264 min post first-cleavage + worm_development + WBls:0000375 + 264 min post first-cleavage Ce - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12821,20 +12875,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 265 min post first-cleavage - worm_development - WBls:0000376 - 265 min post first-cleavage Ce + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 265 min post first-cleavage + worm_development + WBls:0000376 + 265 min post first-cleavage Ce - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12856,20 +12910,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 266 min post first-cleavage - worm_development - WBls:0000377 - 266 min post first-cleavage Ce + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 266 min post first-cleavage + worm_development + WBls:0000377 + 266 min post first-cleavage Ce - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12891,20 +12945,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 267 min post first-cleavage - worm_development - WBls:0000378 - 267 min post first-cleavage Ce + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 267 min post first-cleavage + worm_development + WBls:0000378 + 267 min post first-cleavage Ce - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12926,20 +12980,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 268 min post first-cleavage - worm_development - WBls:0000379 - 268 min post first-cleavage Ce + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 268 min post first-cleavage + worm_development + WBls:0000379 + 268 min post first-cleavage Ce - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12961,20 +13015,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 269 min post first-cleavage - worm_development - WBls:0000380 - 269 min post first-cleavage Ce + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 269 min post first-cleavage + worm_development + WBls:0000380 + 269 min post first-cleavage Ce - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12996,20 +13050,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 270 min post first-cleavage - worm_development - WBls:0000381 - 270 min post first-cleavage Ce + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 270 min post first-cleavage + worm_development + WBls:0000381 + 270 min post first-cleavage Ce - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13031,20 +13085,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 271 min post first-cleavage - worm_development - WBls:0000382 - 271 min post first-cleavage Ce + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 271 min post first-cleavage + worm_development + WBls:0000382 + 271 min post first-cleavage Ce - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13066,20 +13120,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 272 min post first-cleavage - worm_development - WBls:0000383 - 272 min post first-cleavage Ce + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 272 min post first-cleavage + worm_development + WBls:0000383 + 272 min post first-cleavage Ce - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13101,20 +13155,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 273 min post first-cleavage - worm_development - WBls:0000384 - 273 min post first-cleavage Ce + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 273 min post first-cleavage + worm_development + WBls:0000384 + 273 min post first-cleavage Ce - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13136,20 +13190,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 274 min post first-cleavage - worm_development - WBls:0000385 - 274 min post first-cleavage Ce + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 274 min post first-cleavage + worm_development + WBls:0000385 + 274 min post first-cleavage Ce - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13171,20 +13225,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 275 min post first-cleavage - worm_development - WBls:0000386 - 275 min post first-cleavage Ce + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 275 min post first-cleavage + worm_development + WBls:0000386 + 275 min post first-cleavage Ce - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13206,20 +13260,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 276 min post first-cleavage - worm_development - WBls:0000387 - 276 min post first-cleavage Ce + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 276 min post first-cleavage + worm_development + WBls:0000387 + 276 min post first-cleavage Ce - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13241,20 +13295,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 277 min post first-cleavage - worm_development - WBls:0000388 - 277 min post first-cleavage Ce + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 277 min post first-cleavage + worm_development + WBls:0000388 + 277 min post first-cleavage Ce - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13276,20 +13330,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 278 min post first-cleavage - worm_development - WBls:0000389 - 278 min post first-cleavage Ce + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 278 min post first-cleavage + worm_development + WBls:0000389 + 278 min post first-cleavage Ce - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13311,20 +13365,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 279 min post first-cleavage - worm_development - WBls:0000390 - 279 min post first-cleavage Ce + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 279 min post first-cleavage + worm_development + WBls:0000390 + 279 min post first-cleavage Ce - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13346,20 +13400,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 280 min post first-cleavage - worm_development - WBls:0000391 - 280 min post first-cleavage Ce + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 280 min post first-cleavage + worm_development + WBls:0000391 + 280 min post first-cleavage Ce - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13381,20 +13435,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 281 min post first-cleavage - worm_development - WBls:0000392 - 281 min post first-cleavage Ce + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 281 min post first-cleavage + worm_development + WBls:0000392 + 281 min post first-cleavage Ce - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13416,20 +13470,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 282 min post first-cleavage - worm_development - WBls:0000393 - 282 min post first-cleavage Ce + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 282 min post first-cleavage + worm_development + WBls:0000393 + 282 min post first-cleavage Ce - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13451,20 +13505,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 283 min post first-cleavage - worm_development - WBls:0000394 - 283 min post first-cleavage Ce + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 283 min post first-cleavage + worm_development + WBls:0000394 + 283 min post first-cleavage Ce - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13486,20 +13540,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 284 min post first-cleavage - worm_development - WBls:0000395 - 284 min post first-cleavage Ce + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 284 min post first-cleavage + worm_development + WBls:0000395 + 284 min post first-cleavage Ce - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13521,20 +13575,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 285 min post first-cleavage - worm_development - WBls:0000396 - 285 min post first-cleavage Ce + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 285 min post first-cleavage + worm_development + WBls:0000396 + 285 min post first-cleavage Ce - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13556,20 +13610,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 286 min post first-cleavage - worm_development - WBls:0000397 - 286 min post first-cleavage Ce + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 286 min post first-cleavage + worm_development + WBls:0000397 + 286 min post first-cleavage Ce - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13591,20 +13645,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 287 min post first-cleavage - worm_development - WBls:0000398 - 287 min post first-cleavage Ce + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 287 min post first-cleavage + worm_development + WBls:0000398 + 287 min post first-cleavage Ce - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13626,20 +13680,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 288 min post first-cleavage - worm_development - WBls:0000399 - 288 min post first-cleavage Ce + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 288 min post first-cleavage + worm_development + WBls:0000399 + 288 min post first-cleavage Ce - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13661,20 +13715,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 289 min post first-cleavage - worm_development - WBls:0000400 - 289 min post first-cleavage Ce + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 289 min post first-cleavage + worm_development + WBls:0000400 + 289 min post first-cleavage Ce - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13696,20 +13750,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 290 min post first-cleavage - worm_development - WBls:0000401 - 290 min post first-cleavage Ce + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 290 min post first-cleavage + worm_development + WBls:0000401 + 290 min post first-cleavage Ce - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13731,20 +13785,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 291 min post first-cleavage - worm_development - WBls:0000402 - 291 min post first-cleavage Ce + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 291 min post first-cleavage + worm_development + WBls:0000402 + 291 min post first-cleavage Ce - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13766,20 +13820,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 292 min post first-cleavage - worm_development - WBls:0000403 - 292 min post first-cleavage Ce + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 292 min post first-cleavage + worm_development + WBls:0000403 + 292 min post first-cleavage Ce - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13801,20 +13855,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 293 min post first-cleavage - worm_development - WBls:0000404 - 293 min post first-cleavage Ce + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 293 min post first-cleavage + worm_development + WBls:0000404 + 293 min post first-cleavage Ce - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13836,20 +13890,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 294 min post first-cleavage - worm_development - WBls:0000405 - 294 min post first-cleavage Ce + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 294 min post first-cleavage + worm_development + WBls:0000405 + 294 min post first-cleavage Ce - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13871,20 +13925,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 295 min post first-cleavage - worm_development - WBls:0000406 - 295 min post first-cleavage Ce + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 295 min post first-cleavage + worm_development + WBls:0000406 + 295 min post first-cleavage Ce - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13906,20 +13960,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 296 min post first-cleavage - worm_development - WBls:0000407 - 296 min post first-cleavage Ce + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 296 min post first-cleavage + worm_development + WBls:0000407 + 296 min post first-cleavage Ce - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13941,20 +13995,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 297 min post first-cleavage - worm_development - WBls:0000408 - 297 min post first-cleavage Ce + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 297 min post first-cleavage + worm_development + WBls:0000408 + 297 min post first-cleavage Ce - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13976,20 +14030,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 298 min post first-cleavage - worm_development - WBls:0000409 - 298 min post first-cleavage Ce + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 298 min post first-cleavage + worm_development + WBls:0000409 + 298 min post first-cleavage Ce - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14011,20 +14065,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 299 min post first-cleavage - worm_development - WBls:0000410 - 299 min post first-cleavage Ce + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 299 min post first-cleavage + worm_development + WBls:0000410 + 299 min post first-cleavage Ce - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14046,20 +14100,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 300 min post first-cleavage - worm_development - WBls:0000411 - 300 min post first-cleavage Ce + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 300 min post first-cleavage + worm_development + WBls:0000411 + 300 min post first-cleavage Ce - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14081,20 +14135,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 301 min post first-cleavage - worm_development - WBls:0000412 - 301 min post first-cleavage Ce + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 301 min post first-cleavage + worm_development + WBls:0000412 + 301 min post first-cleavage Ce - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14116,20 +14170,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 302 min post first-cleavage - worm_development - WBls:0000413 - 302 min post first-cleavage Ce + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 302 min post first-cleavage + worm_development + WBls:0000413 + 302 min post first-cleavage Ce - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14151,20 +14205,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 303 min post first-cleavage - worm_development - WBls:0000414 - 303 min post first-cleavage Ce + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 303 min post first-cleavage + worm_development + WBls:0000414 + 303 min post first-cleavage Ce - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14186,20 +14240,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 304 min post first-cleavage - worm_development - WBls:0000415 - 304 min post first-cleavage Ce + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 304 min post first-cleavage + worm_development + WBls:0000415 + 304 min post first-cleavage Ce - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14221,20 +14275,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 305 min post first-cleavage - worm_development - WBls:0000416 - 305 min post first-cleavage Ce + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 305 min post first-cleavage + worm_development + WBls:0000416 + 305 min post first-cleavage Ce - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14256,20 +14310,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 306 min post first-cleavage - worm_development - WBls:0000417 - 306 min post first-cleavage Ce + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 306 min post first-cleavage + worm_development + WBls:0000417 + 306 min post first-cleavage Ce - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14291,20 +14345,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 307 min post first-cleavage - worm_development - WBls:0000418 - 307 min post first-cleavage Ce + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 307 min post first-cleavage + worm_development + WBls:0000418 + 307 min post first-cleavage Ce - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14326,20 +14380,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 308 min post first-cleavage - worm_development - WBls:0000419 - 308 min post first-cleavage Ce + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 308 min post first-cleavage + worm_development + WBls:0000419 + 308 min post first-cleavage Ce - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14361,20 +14415,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 309 min post first-cleavage - worm_development - WBls:0000420 - 309 min post first-cleavage Ce + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 309 min post first-cleavage + worm_development + WBls:0000420 + 309 min post first-cleavage Ce - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14396,20 +14450,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 310 min post first-cleavage - worm_development - WBls:0000421 - 310 min post first-cleavage Ce + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 310 min post first-cleavage + worm_development + WBls:0000421 + 310 min post first-cleavage Ce - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14431,20 +14485,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 311 min post first-cleavage - worm_development - WBls:0000422 - 311 min post first-cleavage Ce + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 311 min post first-cleavage + worm_development + WBls:0000422 + 311 min post first-cleavage Ce - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14466,20 +14520,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 312 min post first-cleavage - worm_development - WBls:0000423 - 312 min post first-cleavage Ce + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 312 min post first-cleavage + worm_development + WBls:0000423 + 312 min post first-cleavage Ce - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14501,20 +14555,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 313 min post first-cleavage - worm_development - WBls:0000424 - 313 min post first-cleavage Ce + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 313 min post first-cleavage + worm_development + WBls:0000424 + 313 min post first-cleavage Ce - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14536,20 +14590,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 314 min post first-cleavage - worm_development - WBls:0000425 - 314 min post first-cleavage Ce + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 314 min post first-cleavage + worm_development + WBls:0000425 + 314 min post first-cleavage Ce - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14571,20 +14625,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 315 min post first-cleavage - worm_development - WBls:0000426 - 315 min post first-cleavage Ce + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 315 min post first-cleavage + worm_development + WBls:0000426 + 315 min post first-cleavage Ce - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14606,20 +14660,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 316 min post first-cleavage - worm_development - WBls:0000427 - 316 min post first-cleavage Ce + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 316 min post first-cleavage + worm_development + WBls:0000427 + 316 min post first-cleavage Ce - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14641,20 +14695,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 317 min post first-cleavage - worm_development - WBls:0000428 - 317 min post first-cleavage Ce + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 317 min post first-cleavage + worm_development + WBls:0000428 + 317 min post first-cleavage Ce - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14676,20 +14730,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 318 min post first-cleavage - worm_development - WBls:0000429 - 318 min post first-cleavage Ce + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 318 min post first-cleavage + worm_development + WBls:0000429 + 318 min post first-cleavage Ce - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14711,20 +14765,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 319 min post first-cleavage - worm_development - WBls:0000430 - 319 min post first-cleavage Ce + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 319 min post first-cleavage + worm_development + WBls:0000430 + 319 min post first-cleavage Ce - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14746,20 +14800,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 320 min post first-cleavage - worm_development - WBls:0000431 - 320 min post first-cleavage Ce + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 320 min post first-cleavage + worm_development + WBls:0000431 + 320 min post first-cleavage Ce - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14781,20 +14835,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 321 min post first-cleavage - worm_development - WBls:0000432 - 321 min post first-cleavage Ce + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 321 min post first-cleavage + worm_development + WBls:0000432 + 321 min post first-cleavage Ce - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14816,20 +14870,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 322 min post first-cleavage - worm_development - WBls:0000433 - 322 min post first-cleavage Ce + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 322 min post first-cleavage + worm_development + WBls:0000433 + 322 min post first-cleavage Ce - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14851,20 +14905,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 323 min post first-cleavage - worm_development - WBls:0000434 - 323 min post first-cleavage Ce + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 323 min post first-cleavage + worm_development + WBls:0000434 + 323 min post first-cleavage Ce - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14886,20 +14940,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 324 min post first-cleavage - worm_development - WBls:0000435 - 324 min post first-cleavage Ce + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 324 min post first-cleavage + worm_development + WBls:0000435 + 324 min post first-cleavage Ce - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14921,20 +14975,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 325 min post first-cleavage - worm_development - WBls:0000436 - 325 min post first-cleavage Ce + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 325 min post first-cleavage + worm_development + WBls:0000436 + 325 min post first-cleavage Ce - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14956,20 +15010,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 326 min post first-cleavage - worm_development - WBls:0000437 - 326 min post first-cleavage Ce + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 326 min post first-cleavage + worm_development + WBls:0000437 + 326 min post first-cleavage Ce - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14991,20 +15045,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 327 min post first-cleavage - worm_development - WBls:0000438 - 327 min post first-cleavage Ce + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 327 min post first-cleavage + worm_development + WBls:0000438 + 327 min post first-cleavage Ce - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15026,20 +15080,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 328 min post first-cleavage - worm_development - WBls:0000439 - 328 min post first-cleavage Ce + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 328 min post first-cleavage + worm_development + WBls:0000439 + 328 min post first-cleavage Ce - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15061,20 +15115,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 329 min post first-cleavage - worm_development - WBls:0000440 - 329 min post first-cleavage Ce + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 329 min post first-cleavage + worm_development + WBls:0000440 + 329 min post first-cleavage Ce - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15096,20 +15150,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 330 min post first-cleavage - worm_development - WBls:0000441 - 330 min post first-cleavage Ce + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 330 min post first-cleavage + worm_development + WBls:0000441 + 330 min post first-cleavage Ce - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15131,20 +15185,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 331 min post first-cleavage - worm_development - WBls:0000442 - 331 min post first-cleavage Ce + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 331 min post first-cleavage + worm_development + WBls:0000442 + 331 min post first-cleavage Ce - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15166,20 +15220,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 332 min post first-cleavage - worm_development - WBls:0000443 - 332 min post first-cleavage Ce + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 332 min post first-cleavage + worm_development + WBls:0000443 + 332 min post first-cleavage Ce - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15201,20 +15255,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 333 min post first-cleavage - worm_development - WBls:0000444 - 333 min post first-cleavage Ce + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 333 min post first-cleavage + worm_development + WBls:0000444 + 333 min post first-cleavage Ce - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15236,20 +15290,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 334 min post first-cleavage - worm_development - WBls:0000445 - 334 min post first-cleavage Ce + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 334 min post first-cleavage + worm_development + WBls:0000445 + 334 min post first-cleavage Ce - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15271,20 +15325,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 335 min post first-cleavage - worm_development - WBls:0000446 - 335 min post first-cleavage Ce + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 335 min post first-cleavage + worm_development + WBls:0000446 + 335 min post first-cleavage Ce - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15306,20 +15360,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 336 min post first-cleavage - worm_development - WBls:0000447 - 336 min post first-cleavage Ce + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 336 min post first-cleavage + worm_development + WBls:0000447 + 336 min post first-cleavage Ce - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15341,20 +15395,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 337 min post first-cleavage - worm_development - WBls:0000448 - 337 min post first-cleavage Ce + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 337 min post first-cleavage + worm_development + WBls:0000448 + 337 min post first-cleavage Ce - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15376,20 +15430,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 338 min post first-cleavage - worm_development - WBls:0000449 - 338 min post first-cleavage Ce + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 338 min post first-cleavage + worm_development + WBls:0000449 + 338 min post first-cleavage Ce - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15411,20 +15465,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 339 min post first-cleavage - worm_development - WBls:0000450 - 339 min post first-cleavage Ce + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 339 min post first-cleavage + worm_development + WBls:0000450 + 339 min post first-cleavage Ce - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15446,20 +15500,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 340 min post first-cleavage - worm_development - WBls:0000451 - 340 min post first-cleavage Ce + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 340 min post first-cleavage + worm_development + WBls:0000451 + 340 min post first-cleavage Ce - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15481,20 +15535,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 341 min post first-cleavage - worm_development - WBls:0000452 - 341 min post first-cleavage Ce + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 341 min post first-cleavage + worm_development + WBls:0000452 + 341 min post first-cleavage Ce - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15516,20 +15570,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 342 min post first-cleavage - worm_development - WBls:0000453 - 342 min post first-cleavage Ce + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 342 min post first-cleavage + worm_development + WBls:0000453 + 342 min post first-cleavage Ce - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15551,20 +15605,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 343 min post first-cleavage - worm_development - WBls:0000454 - 343 min post first-cleavage Ce + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 343 min post first-cleavage + worm_development + WBls:0000454 + 343 min post first-cleavage Ce - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15586,20 +15640,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 344 min post first-cleavage - worm_development - WBls:0000455 - 344 min post first-cleavage Ce + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 344 min post first-cleavage + worm_development + WBls:0000455 + 344 min post first-cleavage Ce - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15621,20 +15675,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 345 min post first-cleavage - worm_development - WBls:0000456 - 345 min post first-cleavage Ce + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 345 min post first-cleavage + worm_development + WBls:0000456 + 345 min post first-cleavage Ce - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15656,20 +15710,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 346 min post first-cleavage - worm_development - WBls:0000457 - 346 min post first-cleavage Ce + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 346 min post first-cleavage + worm_development + WBls:0000457 + 346 min post first-cleavage Ce - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15691,20 +15745,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 347 min post first-cleavage - worm_development - WBls:0000458 - 347 min post first-cleavage Ce + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 347 min post first-cleavage + worm_development + WBls:0000458 + 347 min post first-cleavage Ce - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15726,20 +15780,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 348 min post first-cleavage - worm_development - WBls:0000459 - 348 min post first-cleavage Ce + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 348 min post first-cleavage + worm_development + WBls:0000459 + 348 min post first-cleavage Ce - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15761,20 +15815,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 349 min post first-cleavage - worm_development - WBls:0000460 - 349 min post first-cleavage Ce + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 349 min post first-cleavage + worm_development + WBls:0000460 + 349 min post first-cleavage Ce - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15796,20 +15850,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 350 min post first-cleavage - worm_development - WBls:0000461 - 350 min post first-cleavage Ce + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 350 min post first-cleavage + worm_development + WBls:0000461 + 350 min post first-cleavage Ce - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15831,20 +15885,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 351 min post first-cleavage - worm_development - WBls:0000462 - 351 min post first-cleavage Ce + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 351 min post first-cleavage + worm_development + WBls:0000462 + 351 min post first-cleavage Ce - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15866,20 +15920,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 352 min post first-cleavage - worm_development - WBls:0000463 - 352 min post first-cleavage Ce + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 352 min post first-cleavage + worm_development + WBls:0000463 + 352 min post first-cleavage Ce - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15901,20 +15955,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 353 min post first-cleavage - worm_development - WBls:0000464 - 353 min post first-cleavage Ce + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 353 min post first-cleavage + worm_development + WBls:0000464 + 353 min post first-cleavage Ce - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15936,20 +15990,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 354 min post first-cleavage - worm_development - WBls:0000465 - 354 min post first-cleavage Ce + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 354 min post first-cleavage + worm_development + WBls:0000465 + 354 min post first-cleavage Ce - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15971,20 +16025,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 355 min post first-cleavage - worm_development - WBls:0000466 - 355 min post first-cleavage Ce + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 355 min post first-cleavage + worm_development + WBls:0000466 + 355 min post first-cleavage Ce - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16006,20 +16060,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 356 min post first-cleavage - worm_development - WBls:0000467 - 356 min post first-cleavage Ce + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 356 min post first-cleavage + worm_development + WBls:0000467 + 356 min post first-cleavage Ce - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16041,20 +16095,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 357 min post first-cleavage - worm_development - WBls:0000468 - 357 min post first-cleavage Ce + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 357 min post first-cleavage + worm_development + WBls:0000468 + 357 min post first-cleavage Ce - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16076,20 +16130,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 358 min post first-cleavage - worm_development - WBls:0000469 - 358 min post first-cleavage Ce + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 358 min post first-cleavage + worm_development + WBls:0000469 + 358 min post first-cleavage Ce - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16111,20 +16165,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 359 min post first-cleavage - worm_development - WBls:0000470 - 359 min post first-cleavage Ce + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 359 min post first-cleavage + worm_development + WBls:0000470 + 359 min post first-cleavage Ce - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16146,20 +16200,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 360 min post first-cleavage - worm_development - WBls:0000471 - 360 min post first-cleavage Ce + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 360 min post first-cleavage + worm_development + WBls:0000471 + 360 min post first-cleavage Ce - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16181,20 +16235,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 361 min post first-cleavage - worm_development - WBls:0000472 - 361 min post first-cleavage Ce + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 361 min post first-cleavage + worm_development + WBls:0000472 + 361 min post first-cleavage Ce - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16216,20 +16270,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 362 min post first-cleavage - worm_development - WBls:0000473 - 362 min post first-cleavage Ce + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 362 min post first-cleavage + worm_development + WBls:0000473 + 362 min post first-cleavage Ce - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16251,20 +16305,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 363 min post first-cleavage - worm_development - WBls:0000474 - 363 min post first-cleavage Ce + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 363 min post first-cleavage + worm_development + WBls:0000474 + 363 min post first-cleavage Ce - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16286,20 +16340,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 364 min post first-cleavage - worm_development - WBls:0000475 - 364 min post first-cleavage Ce + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 364 min post first-cleavage + worm_development + WBls:0000475 + 364 min post first-cleavage Ce - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16321,20 +16375,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 365 min post first-cleavage - worm_development - WBls:0000476 - 365 min post first-cleavage Ce + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 365 min post first-cleavage + worm_development + WBls:0000476 + 365 min post first-cleavage Ce - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16356,20 +16410,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 366 min post first-cleavage - worm_development - WBls:0000477 - 366 min post first-cleavage Ce + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 366 min post first-cleavage + worm_development + WBls:0000477 + 366 min post first-cleavage Ce - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16391,20 +16445,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 367 min post first-cleavage - worm_development - WBls:0000478 - 367 min post first-cleavage Ce + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 367 min post first-cleavage + worm_development + WBls:0000478 + 367 min post first-cleavage Ce - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16426,20 +16480,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 368 min post first-cleavage - worm_development - WBls:0000479 - 368 min post first-cleavage Ce + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 368 min post first-cleavage + worm_development + WBls:0000479 + 368 min post first-cleavage Ce - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16461,20 +16515,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 369 min post first-cleavage - worm_development - WBls:0000480 - 369 min post first-cleavage Ce + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 369 min post first-cleavage + worm_development + WBls:0000480 + 369 min post first-cleavage Ce - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16496,20 +16550,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 370 min post first-cleavage - worm_development - WBls:0000481 - 370 min post first-cleavage Ce + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 370 min post first-cleavage + worm_development + WBls:0000481 + 370 min post first-cleavage Ce - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16531,20 +16585,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 371 min post first-cleavage - worm_development - WBls:0000482 - 371 min post first-cleavage Ce + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 371 min post first-cleavage + worm_development + WBls:0000482 + 371 min post first-cleavage Ce - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16566,20 +16620,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 372 min post first-cleavage - worm_development - WBls:0000483 - 372 min post first-cleavage Ce + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 372 min post first-cleavage + worm_development + WBls:0000483 + 372 min post first-cleavage Ce - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16601,20 +16655,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 373 min post first-cleavage - worm_development - WBls:0000484 - 373 min post first-cleavage Ce + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 373 min post first-cleavage + worm_development + WBls:0000484 + 373 min post first-cleavage Ce - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16636,20 +16690,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 374 min post first-cleavage - worm_development - WBls:0000485 - 374 min post first-cleavage Ce + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 374 min post first-cleavage + worm_development + WBls:0000485 + 374 min post first-cleavage Ce - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16671,20 +16725,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 375 min post first-cleavage - worm_development - WBls:0000486 - 375 min post first-cleavage Ce + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 375 min post first-cleavage + worm_development + WBls:0000486 + 375 min post first-cleavage Ce - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16706,20 +16760,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 376 min post first-cleavage - worm_development - WBls:0000487 - 376 min post first-cleavage Ce + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 376 min post first-cleavage + worm_development + WBls:0000487 + 376 min post first-cleavage Ce - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16741,20 +16795,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 377 min post first-cleavage - worm_development - WBls:0000488 - 377 min post first-cleavage Ce + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 377 min post first-cleavage + worm_development + WBls:0000488 + 377 min post first-cleavage Ce - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16776,20 +16830,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 378 min post first-cleavage - worm_development - WBls:0000489 - 378 min post first-cleavage Ce + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 378 min post first-cleavage + worm_development + WBls:0000489 + 378 min post first-cleavage Ce - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16811,20 +16865,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 379 min post first-cleavage - worm_development - WBls:0000490 - 379 min post first-cleavage Ce + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 379 min post first-cleavage + worm_development + WBls:0000490 + 379 min post first-cleavage Ce - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16846,20 +16900,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 380 min post first-cleavage - worm_development - WBls:0000491 - 380 min post first-cleavage Ce + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 380 min post first-cleavage + worm_development + WBls:0000491 + 380 min post first-cleavage Ce - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16881,20 +16935,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 381 min post first-cleavage - worm_development - WBls:0000492 - 381 min post first-cleavage Ce + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 381 min post first-cleavage + worm_development + WBls:0000492 + 381 min post first-cleavage Ce - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16916,20 +16970,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 382 min post first-cleavage - worm_development - WBls:0000493 - 382 min post first-cleavage Ce + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 382 min post first-cleavage + worm_development + WBls:0000493 + 382 min post first-cleavage Ce - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16951,20 +17005,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 383 min post first-cleavage - worm_development - WBls:0000494 - 383 min post first-cleavage Ce + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 383 min post first-cleavage + worm_development + WBls:0000494 + 383 min post first-cleavage Ce - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16986,20 +17040,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 384 min post first-cleavage - worm_development - WBls:0000495 - 384 min post first-cleavage Ce + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 384 min post first-cleavage + worm_development + WBls:0000495 + 384 min post first-cleavage Ce - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17021,20 +17075,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 385 min post first-cleavage - worm_development - WBls:0000496 - 385 min post first-cleavage Ce + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 385 min post first-cleavage + worm_development + WBls:0000496 + 385 min post first-cleavage Ce - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17056,20 +17110,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 386 min post first-cleavage - worm_development - WBls:0000497 - 386 min post first-cleavage Ce + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 386 min post first-cleavage + worm_development + WBls:0000497 + 386 min post first-cleavage Ce - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17091,20 +17145,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 387 min post first-cleavage - worm_development - WBls:0000498 - 387 min post first-cleavage Ce + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 387 min post first-cleavage + worm_development + WBls:0000498 + 387 min post first-cleavage Ce - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17126,20 +17180,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 388 min post first-cleavage - worm_development - WBls:0000499 - 388 min post first-cleavage Ce + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 388 min post first-cleavage + worm_development + WBls:0000499 + 388 min post first-cleavage Ce - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17161,20 +17215,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 389 min post first-cleavage - worm_development - WBls:0000500 - 389 min post first-cleavage Ce + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 389 min post first-cleavage + worm_development + WBls:0000500 + 389 min post first-cleavage Ce - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17196,20 +17250,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 390 min post first-cleavage - worm_development - WBls:0000501 - 390 min post first-cleavage Ce + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 390 min post first-cleavage + worm_development + WBls:0000501 + 390 min post first-cleavage Ce - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17231,20 +17285,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 391 min post first-cleavage - worm_development - WBls:0000502 - 391 min post first-cleavage Ce + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 391 min post first-cleavage + worm_development + WBls:0000502 + 391 min post first-cleavage Ce - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17266,20 +17320,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 392 min post first-cleavage - worm_development - WBls:0000503 - 392 min post first-cleavage Ce + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 392 min post first-cleavage + worm_development + WBls:0000503 + 392 min post first-cleavage Ce - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17301,20 +17355,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 393 min post first-cleavage - worm_development - WBls:0000504 - 393 min post first-cleavage Ce + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 393 min post first-cleavage + worm_development + WBls:0000504 + 393 min post first-cleavage Ce - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17336,20 +17390,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 394 min post first-cleavage - worm_development - WBls:0000505 - 394 min post first-cleavage Ce + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 394 min post first-cleavage + worm_development + WBls:0000505 + 394 min post first-cleavage Ce - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17371,20 +17425,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 395 min post first-cleavage - worm_development - WBls:0000506 - 395 min post first-cleavage Ce + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 395 min post first-cleavage + worm_development + WBls:0000506 + 395 min post first-cleavage Ce - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17406,20 +17460,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 396 min post first-cleavage - worm_development - WBls:0000507 - 396 min post first-cleavage Ce + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 396 min post first-cleavage + worm_development + WBls:0000507 + 396 min post first-cleavage Ce - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17441,20 +17495,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 397 min post first-cleavage - worm_development - WBls:0000508 - 397 min post first-cleavage Ce + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 397 min post first-cleavage + worm_development + WBls:0000508 + 397 min post first-cleavage Ce - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17476,20 +17530,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 398 min post first-cleavage - worm_development - WBls:0000509 - 398 min post first-cleavage Ce + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 398 min post first-cleavage + worm_development + WBls:0000509 + 398 min post first-cleavage Ce - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17511,20 +17565,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 399 min post first-cleavage - worm_development - WBls:0000510 - 399 min post first-cleavage Ce + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 399 min post first-cleavage + worm_development + WBls:0000510 + 399 min post first-cleavage Ce - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17546,20 +17600,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 400 min post first-cleavage - worm_development - WBls:0000511 - 400 min post first-cleavage Ce + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 400 min post first-cleavage + worm_development + WBls:0000511 + 400 min post first-cleavage Ce - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17581,20 +17635,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 401 min post first-cleavage - worm_development - WBls:0000512 - 401 min post first-cleavage Ce + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 401 min post first-cleavage + worm_development + WBls:0000512 + 401 min post first-cleavage Ce - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17616,20 +17670,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 402 min post first-cleavage - worm_development - WBls:0000513 - 402 min post first-cleavage Ce + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 402 min post first-cleavage + worm_development + WBls:0000513 + 402 min post first-cleavage Ce - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17651,20 +17705,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 403 min post first-cleavage - worm_development - WBls:0000514 - 403 min post first-cleavage Ce + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 403 min post first-cleavage + worm_development + WBls:0000514 + 403 min post first-cleavage Ce - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17686,20 +17740,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 404 min post first-cleavage - worm_development - WBls:0000515 - 404 min post first-cleavage Ce + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 404 min post first-cleavage + worm_development + WBls:0000515 + 404 min post first-cleavage Ce - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17721,20 +17775,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 405 min post first-cleavage - worm_development - WBls:0000516 - 405 min post first-cleavage Ce + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 405 min post first-cleavage + worm_development + WBls:0000516 + 405 min post first-cleavage Ce - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17756,20 +17810,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 406 min post first-cleavage - worm_development - WBls:0000517 - 406 min post first-cleavage Ce + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 406 min post first-cleavage + worm_development + WBls:0000517 + 406 min post first-cleavage Ce - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17791,20 +17845,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 407 min post first-cleavage - worm_development - WBls:0000518 - 407 min post first-cleavage Ce + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 407 min post first-cleavage + worm_development + WBls:0000518 + 407 min post first-cleavage Ce - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17826,20 +17880,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 408 min post first-cleavage - worm_development - WBls:0000519 - 408 min post first-cleavage Ce + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 408 min post first-cleavage + worm_development + WBls:0000519 + 408 min post first-cleavage Ce - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17861,20 +17915,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 409 min post first-cleavage - worm_development - WBls:0000520 - 409 min post first-cleavage Ce + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 409 min post first-cleavage + worm_development + WBls:0000520 + 409 min post first-cleavage Ce - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17896,20 +17950,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 410 min post first-cleavage - worm_development - WBls:0000521 - 410 min post first-cleavage Ce + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 410 min post first-cleavage + worm_development + WBls:0000521 + 410 min post first-cleavage Ce - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17931,20 +17985,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 411 min post first-cleavage - worm_development - WBls:0000522 - 411 min post first-cleavage Ce + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 411 min post first-cleavage + worm_development + WBls:0000522 + 411 min post first-cleavage Ce - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17966,20 +18020,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 412 min post first-cleavage - worm_development - WBls:0000523 - 412 min post first-cleavage Ce + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 412 min post first-cleavage + worm_development + WBls:0000523 + 412 min post first-cleavage Ce - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18001,20 +18055,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 413 min post first-cleavage - worm_development - WBls:0000524 - 413 min post first-cleavage Ce + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 413 min post first-cleavage + worm_development + WBls:0000524 + 413 min post first-cleavage Ce - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18036,20 +18090,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 414 min post first-cleavage - worm_development - WBls:0000525 - 414 min post first-cleavage Ce + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 414 min post first-cleavage + worm_development + WBls:0000525 + 414 min post first-cleavage Ce - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18071,20 +18125,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 415 min post first-cleavage - worm_development - WBls:0000526 - 415 min post first-cleavage Ce + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 415 min post first-cleavage + worm_development + WBls:0000526 + 415 min post first-cleavage Ce - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18106,20 +18160,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 416 min post first-cleavage - worm_development - WBls:0000527 - 416 min post first-cleavage Ce + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 416 min post first-cleavage + worm_development + WBls:0000527 + 416 min post first-cleavage Ce - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18141,20 +18195,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 417 min post first-cleavage - worm_development - WBls:0000528 - 417 min post first-cleavage Ce + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 417 min post first-cleavage + worm_development + WBls:0000528 + 417 min post first-cleavage Ce - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18176,20 +18230,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 418 min post first-cleavage - worm_development - WBls:0000529 - 418 min post first-cleavage Ce + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 418 min post first-cleavage + worm_development + WBls:0000529 + 418 min post first-cleavage Ce - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18211,20 +18265,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 419 min post first-cleavage - worm_development - WBls:0000530 - 419 min post first-cleavage Ce + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 419 min post first-cleavage + worm_development + WBls:0000530 + 419 min post first-cleavage Ce - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18246,20 +18300,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 420 min post first-cleavage - worm_development - WBls:0000531 - 420 min post first-cleavage Ce + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 420 min post first-cleavage + worm_development + WBls:0000531 + 420 min post first-cleavage Ce - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18281,20 +18335,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 421 min post first-cleavage - worm_development - WBls:0000532 - 421 min post first-cleavage Ce + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 421 min post first-cleavage + worm_development + WBls:0000532 + 421 min post first-cleavage Ce - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18316,20 +18370,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 422 min post first-cleavage - worm_development - WBls:0000533 - 422 min post first-cleavage Ce + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 422 min post first-cleavage + worm_development + WBls:0000533 + 422 min post first-cleavage Ce - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18351,20 +18405,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 423 min post first-cleavage - worm_development - WBls:0000534 - 423 min post first-cleavage Ce + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 423 min post first-cleavage + worm_development + WBls:0000534 + 423 min post first-cleavage Ce - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18386,20 +18440,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 424 min post first-cleavage - worm_development - WBls:0000535 - 424 min post first-cleavage Ce + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 424 min post first-cleavage + worm_development + WBls:0000535 + 424 min post first-cleavage Ce - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18421,20 +18475,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 425 min post first-cleavage - worm_development - WBls:0000536 - 425 min post first-cleavage Ce + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 425 min post first-cleavage + worm_development + WBls:0000536 + 425 min post first-cleavage Ce - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18456,20 +18510,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 426 min post first-cleavage - worm_development - WBls:0000537 - 426 min post first-cleavage Ce + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 426 min post first-cleavage + worm_development + WBls:0000537 + 426 min post first-cleavage Ce - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18491,20 +18545,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 427 min post first-cleavage - worm_development - WBls:0000538 - 427 min post first-cleavage Ce + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 427 min post first-cleavage + worm_development + WBls:0000538 + 427 min post first-cleavage Ce - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18526,20 +18580,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 428 min post first-cleavage - worm_development - WBls:0000539 - 428 min post first-cleavage Ce + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 428 min post first-cleavage + worm_development + WBls:0000539 + 428 min post first-cleavage Ce - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18561,20 +18615,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 429 min post first-cleavage - worm_development - WBls:0000540 - 429 min post first-cleavage Ce + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 429 min post first-cleavage + worm_development + WBls:0000540 + 429 min post first-cleavage Ce - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18596,20 +18650,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 430 min post first-cleavage - worm_development - WBls:0000541 - 430 min post first-cleavage Ce + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 430 min post first-cleavage + worm_development + WBls:0000541 + 430 min post first-cleavage Ce - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18631,20 +18685,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 431 min post first-cleavage - worm_development - WBls:0000542 - 431 min post first-cleavage Ce + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 431 min post first-cleavage + worm_development + WBls:0000542 + 431 min post first-cleavage Ce - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18666,20 +18720,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 432 min post first-cleavage - worm_development - WBls:0000543 - 432 min post first-cleavage Ce + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 432 min post first-cleavage + worm_development + WBls:0000543 + 432 min post first-cleavage Ce - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18701,20 +18755,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 433 min post first-cleavage - worm_development - WBls:0000544 - 433 min post first-cleavage Ce + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 433 min post first-cleavage + worm_development + WBls:0000544 + 433 min post first-cleavage Ce - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18736,20 +18790,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 434 min post first-cleavage - worm_development - WBls:0000545 - 434 min post first-cleavage Ce + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 434 min post first-cleavage + worm_development + WBls:0000545 + 434 min post first-cleavage Ce - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18771,20 +18825,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 435 min post first-cleavage - worm_development - WBls:0000546 - 435 min post first-cleavage Ce + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 435 min post first-cleavage + worm_development + WBls:0000546 + 435 min post first-cleavage Ce - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18806,20 +18860,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 436 min post first-cleavage - worm_development - WBls:0000547 - 436 min post first-cleavage Ce + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 436 min post first-cleavage + worm_development + WBls:0000547 + 436 min post first-cleavage Ce - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18841,20 +18895,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 437 min post first-cleavage - worm_development - WBls:0000548 - 437 min post first-cleavage Ce + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 437 min post first-cleavage + worm_development + WBls:0000548 + 437 min post first-cleavage Ce - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18876,20 +18930,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 438 min post first-cleavage - worm_development - WBls:0000549 - 438 min post first-cleavage Ce + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 438 min post first-cleavage + worm_development + WBls:0000549 + 438 min post first-cleavage Ce - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18911,20 +18965,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 439 min post first-cleavage - worm_development - WBls:0000550 - 439 min post first-cleavage Ce + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 439 min post first-cleavage + worm_development + WBls:0000550 + 439 min post first-cleavage Ce - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18946,20 +19000,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 440 min post first-cleavage - worm_development - WBls:0000551 - 440 min post first-cleavage Ce + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 440 min post first-cleavage + worm_development + WBls:0000551 + 440 min post first-cleavage Ce - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18981,20 +19035,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 441 min post first-cleavage - worm_development - WBls:0000552 - 441 min post first-cleavage Ce + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 441 min post first-cleavage + worm_development + WBls:0000552 + 441 min post first-cleavage Ce - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19016,20 +19070,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 442 min post first-cleavage - worm_development - WBls:0000553 - 442 min post first-cleavage Ce + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 442 min post first-cleavage + worm_development + WBls:0000553 + 442 min post first-cleavage Ce - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19051,20 +19105,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 443 min post first-cleavage - worm_development - WBls:0000554 - 443 min post first-cleavage Ce + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 443 min post first-cleavage + worm_development + WBls:0000554 + 443 min post first-cleavage Ce - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19086,20 +19140,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 444 min post first-cleavage - worm_development - WBls:0000555 - 444 min post first-cleavage Ce + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 444 min post first-cleavage + worm_development + WBls:0000555 + 444 min post first-cleavage Ce - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19121,20 +19175,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 445 min post first-cleavage - worm_development - WBls:0000556 - 445 min post first-cleavage Ce + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 445 min post first-cleavage + worm_development + WBls:0000556 + 445 min post first-cleavage Ce - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19156,20 +19210,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 446 min post first-cleavage - worm_development - WBls:0000557 - 446 min post first-cleavage Ce + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 446 min post first-cleavage + worm_development + WBls:0000557 + 446 min post first-cleavage Ce - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19191,20 +19245,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 447 min post first-cleavage - worm_development - WBls:0000558 - 447 min post first-cleavage Ce + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 447 min post first-cleavage + worm_development + WBls:0000558 + 447 min post first-cleavage Ce - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19226,20 +19280,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 448 min post first-cleavage - worm_development - WBls:0000559 - 448 min post first-cleavage Ce + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 448 min post first-cleavage + worm_development + WBls:0000559 + 448 min post first-cleavage Ce - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19261,20 +19315,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 449 min post first-cleavage - worm_development - WBls:0000560 - 449 min post first-cleavage Ce + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 449 min post first-cleavage + worm_development + WBls:0000560 + 449 min post first-cleavage Ce - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19296,20 +19350,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 450 min post first-cleavage - worm_development - WBls:0000561 - 450 min post first-cleavage Ce + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 450 min post first-cleavage + worm_development + WBls:0000561 + 450 min post first-cleavage Ce - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19331,20 +19385,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 451 min post first-cleavage - worm_development - WBls:0000562 - 451 min post first-cleavage Ce + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 451 min post first-cleavage + worm_development + WBls:0000562 + 451 min post first-cleavage Ce - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19366,20 +19420,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 452 min post first-cleavage - worm_development - WBls:0000563 - 452 min post first-cleavage Ce + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 452 min post first-cleavage + worm_development + WBls:0000563 + 452 min post first-cleavage Ce - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19401,20 +19455,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 453 min post first-cleavage - worm_development - WBls:0000564 - 453 min post first-cleavage Ce + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 453 min post first-cleavage + worm_development + WBls:0000564 + 453 min post first-cleavage Ce - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19436,20 +19490,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 454 min post first-cleavage - worm_development - WBls:0000565 - 454 min post first-cleavage Ce + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 454 min post first-cleavage + worm_development + WBls:0000565 + 454 min post first-cleavage Ce - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19471,20 +19525,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 455 min post first-cleavage - worm_development - WBls:0000566 - 455 min post first-cleavage Ce + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 455 min post first-cleavage + worm_development + WBls:0000566 + 455 min post first-cleavage Ce - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19506,20 +19560,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 456 min post first-cleavage - worm_development - WBls:0000567 - 456 min post first-cleavage Ce + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 456 min post first-cleavage + worm_development + WBls:0000567 + 456 min post first-cleavage Ce - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19541,20 +19595,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 457 min post first-cleavage - worm_development - WBls:0000568 - 457 min post first-cleavage Ce + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 457 min post first-cleavage + worm_development + WBls:0000568 + 457 min post first-cleavage Ce - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19576,20 +19630,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 458 min post first-cleavage - worm_development - WBls:0000569 - 458 min post first-cleavage Ce + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 458 min post first-cleavage + worm_development + WBls:0000569 + 458 min post first-cleavage Ce - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19611,20 +19665,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 459 min post first-cleavage - worm_development - WBls:0000570 - 459 min post first-cleavage Ce + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 459 min post first-cleavage + worm_development + WBls:0000570 + 459 min post first-cleavage Ce - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19646,20 +19700,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 460 min post first-cleavage - worm_development - WBls:0000571 - 460 min post first-cleavage Ce + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 460 min post first-cleavage + worm_development + WBls:0000571 + 460 min post first-cleavage Ce - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19681,20 +19735,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 461 min post first-cleavage - worm_development - WBls:0000572 - 461 min post first-cleavage Ce + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 461 min post first-cleavage + worm_development + WBls:0000572 + 461 min post first-cleavage Ce - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19716,20 +19770,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 462 min post first-cleavage - worm_development - WBls:0000573 - 462 min post first-cleavage Ce + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 462 min post first-cleavage + worm_development + WBls:0000573 + 462 min post first-cleavage Ce - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19751,20 +19805,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 463 min post first-cleavage - worm_development - WBls:0000574 - 463 min post first-cleavage Ce + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 463 min post first-cleavage + worm_development + WBls:0000574 + 463 min post first-cleavage Ce - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19786,20 +19840,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 464 min post first-cleavage - worm_development - WBls:0000575 - 464 min post first-cleavage Ce + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 464 min post first-cleavage + worm_development + WBls:0000575 + 464 min post first-cleavage Ce - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19821,20 +19875,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 465 min post first-cleavage - worm_development - WBls:0000576 - 465 min post first-cleavage Ce + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 465 min post first-cleavage + worm_development + WBls:0000576 + 465 min post first-cleavage Ce - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19856,20 +19910,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 466 min post first-cleavage - worm_development - WBls:0000577 - 466 min post first-cleavage Ce + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 466 min post first-cleavage + worm_development + WBls:0000577 + 466 min post first-cleavage Ce - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19891,20 +19945,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 467 min post first-cleavage - worm_development - WBls:0000578 - 467 min post first-cleavage Ce + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 467 min post first-cleavage + worm_development + WBls:0000578 + 467 min post first-cleavage Ce - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19926,20 +19980,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 468 min post first-cleavage - worm_development - WBls:0000579 - 468 min post first-cleavage Ce + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 468 min post first-cleavage + worm_development + WBls:0000579 + 468 min post first-cleavage Ce - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19961,20 +20015,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 469 min post first-cleavage - worm_development - WBls:0000580 - 469 min post first-cleavage Ce + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 469 min post first-cleavage + worm_development + WBls:0000580 + 469 min post first-cleavage Ce - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19996,20 +20050,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 470 min post first-cleavage - worm_development - WBls:0000581 - 470 min post first-cleavage Ce + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 470 min post first-cleavage + worm_development + WBls:0000581 + 470 min post first-cleavage Ce - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20031,20 +20085,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 471 min post first-cleavage - worm_development - WBls:0000582 - 471 min post first-cleavage Ce + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 471 min post first-cleavage + worm_development + WBls:0000582 + 471 min post first-cleavage Ce - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20066,20 +20120,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 472 min post first-cleavage - worm_development - WBls:0000583 - 472 min post first-cleavage Ce + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 472 min post first-cleavage + worm_development + WBls:0000583 + 472 min post first-cleavage Ce - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20101,20 +20155,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 473 min post first-cleavage - worm_development - WBls:0000584 - 473 min post first-cleavage Ce + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 473 min post first-cleavage + worm_development + WBls:0000584 + 473 min post first-cleavage Ce - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20136,20 +20190,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 474 min post first-cleavage - worm_development - WBls:0000585 - 474 min post first-cleavage Ce + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 474 min post first-cleavage + worm_development + WBls:0000585 + 474 min post first-cleavage Ce - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20171,20 +20225,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 475 min post first-cleavage - worm_development - WBls:0000586 - 475 min post first-cleavage Ce + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 475 min post first-cleavage + worm_development + WBls:0000586 + 475 min post first-cleavage Ce - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20206,20 +20260,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 476 min post first-cleavage - worm_development - WBls:0000587 - 476 min post first-cleavage Ce + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 476 min post first-cleavage + worm_development + WBls:0000587 + 476 min post first-cleavage Ce - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20241,20 +20295,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 477 min post first-cleavage - worm_development - WBls:0000588 - 477 min post first-cleavage Ce + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 477 min post first-cleavage + worm_development + WBls:0000588 + 477 min post first-cleavage Ce - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20276,20 +20330,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 478 min post first-cleavage - worm_development - WBls:0000589 - 478 min post first-cleavage Ce + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 478 min post first-cleavage + worm_development + WBls:0000589 + 478 min post first-cleavage Ce - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20311,20 +20365,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 479 min post first-cleavage - worm_development - WBls:0000590 - 479 min post first-cleavage Ce + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 479 min post first-cleavage + worm_development + WBls:0000590 + 479 min post first-cleavage Ce - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20346,20 +20400,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 480 min post first-cleavage - worm_development - WBls:0000591 - 480 min post first-cleavage Ce + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 480 min post first-cleavage + worm_development + WBls:0000591 + 480 min post first-cleavage Ce - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20381,20 +20435,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 481 min post first-cleavage - worm_development - WBls:0000592 - 481 min post first-cleavage Ce + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 481 min post first-cleavage + worm_development + WBls:0000592 + 481 min post first-cleavage Ce - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20416,20 +20470,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 482 min post first-cleavage - worm_development - WBls:0000593 - 482 min post first-cleavage Ce + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 482 min post first-cleavage + worm_development + WBls:0000593 + 482 min post first-cleavage Ce - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20451,20 +20505,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 483 min post first-cleavage - worm_development - WBls:0000594 - 483 min post first-cleavage Ce + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 483 min post first-cleavage + worm_development + WBls:0000594 + 483 min post first-cleavage Ce - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20486,20 +20540,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 484 min post first-cleavage - worm_development - WBls:0000595 - 484 min post first-cleavage Ce + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 484 min post first-cleavage + worm_development + WBls:0000595 + 484 min post first-cleavage Ce - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20521,20 +20575,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 485 min post first-cleavage - worm_development - WBls:0000596 - 485 min post first-cleavage Ce + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 485 min post first-cleavage + worm_development + WBls:0000596 + 485 min post first-cleavage Ce - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20556,20 +20610,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 486 min post first-cleavage - worm_development - WBls:0000597 - 486 min post first-cleavage Ce + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 486 min post first-cleavage + worm_development + WBls:0000597 + 486 min post first-cleavage Ce - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20591,20 +20645,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 487 min post first-cleavage - worm_development - WBls:0000598 - 487 min post first-cleavage Ce + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 487 min post first-cleavage + worm_development + WBls:0000598 + 487 min post first-cleavage Ce - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20626,20 +20680,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 488 min post first-cleavage - worm_development - WBls:0000599 - 488 min post first-cleavage Ce + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 488 min post first-cleavage + worm_development + WBls:0000599 + 488 min post first-cleavage Ce - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20661,20 +20715,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 489 min post first-cleavage - worm_development - WBls:0000600 - 489 min post first-cleavage Ce + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 489 min post first-cleavage + worm_development + WBls:0000600 + 489 min post first-cleavage Ce - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20696,20 +20750,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 490 min post first-cleavage - worm_development - WBls:0000601 - 490 min post first-cleavage Ce + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 490 min post first-cleavage + worm_development + WBls:0000601 + 490 min post first-cleavage Ce - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20731,20 +20785,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 491 min post first-cleavage - worm_development - WBls:0000602 - 491 min post first-cleavage Ce + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 491 min post first-cleavage + worm_development + WBls:0000602 + 491 min post first-cleavage Ce - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20766,20 +20820,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 492 min post first-cleavage - worm_development - WBls:0000603 - 492 min post first-cleavage Ce + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 492 min post first-cleavage + worm_development + WBls:0000603 + 492 min post first-cleavage Ce - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20801,20 +20855,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 493 min post first-cleavage - worm_development - WBls:0000604 - 493 min post first-cleavage Ce + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 493 min post first-cleavage + worm_development + WBls:0000604 + 493 min post first-cleavage Ce - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20836,20 +20890,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 494 min post first-cleavage - worm_development - WBls:0000605 - 494 min post first-cleavage Ce + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 494 min post first-cleavage + worm_development + WBls:0000605 + 494 min post first-cleavage Ce - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20871,20 +20925,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 495 min post first-cleavage - worm_development - WBls:0000606 - 495 min post first-cleavage Ce + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 495 min post first-cleavage + worm_development + WBls:0000606 + 495 min post first-cleavage Ce - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20906,20 +20960,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 496 min post first-cleavage - worm_development - WBls:0000607 - 496 min post first-cleavage Ce + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 496 min post first-cleavage + worm_development + WBls:0000607 + 496 min post first-cleavage Ce - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20941,20 +20995,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 497 min post first-cleavage - worm_development - WBls:0000608 - 497 min post first-cleavage Ce + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 497 min post first-cleavage + worm_development + WBls:0000608 + 497 min post first-cleavage Ce - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20976,20 +21030,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 498 min post first-cleavage - worm_development - WBls:0000609 - 498 min post first-cleavage Ce + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 498 min post first-cleavage + worm_development + WBls:0000609 + 498 min post first-cleavage Ce - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21011,20 +21065,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 499 min post first-cleavage - worm_development - WBls:0000610 - 499 min post first-cleavage Ce + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 499 min post first-cleavage + worm_development + WBls:0000610 + 499 min post first-cleavage Ce - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21046,20 +21100,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 500 min post first-cleavage - worm_development - WBls:0000611 - 500 min post first-cleavage Ce + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 500 min post first-cleavage + worm_development + WBls:0000611 + 500 min post first-cleavage Ce - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21081,20 +21135,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 501 min post first-cleavage - worm_development - WBls:0000612 - 501 min post first-cleavage Ce + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 501 min post first-cleavage + worm_development + WBls:0000612 + 501 min post first-cleavage Ce - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21116,20 +21170,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 502 min post first-cleavage - worm_development - WBls:0000613 - 502 min post first-cleavage Ce + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 502 min post first-cleavage + worm_development + WBls:0000613 + 502 min post first-cleavage Ce - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21151,20 +21205,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 503 min post first-cleavage - worm_development - WBls:0000614 - 503 min post first-cleavage Ce + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 503 min post first-cleavage + worm_development + WBls:0000614 + 503 min post first-cleavage Ce - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21186,20 +21240,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 504 min post first-cleavage - worm_development - WBls:0000615 - 504 min post first-cleavage Ce + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 504 min post first-cleavage + worm_development + WBls:0000615 + 504 min post first-cleavage Ce - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21221,20 +21275,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 505 min post first-cleavage - worm_development - WBls:0000616 - 505 min post first-cleavage Ce + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 505 min post first-cleavage + worm_development + WBls:0000616 + 505 min post first-cleavage Ce - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21256,20 +21310,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 506 min post first-cleavage - worm_development - WBls:0000617 - 506 min post first-cleavage Ce + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 506 min post first-cleavage + worm_development + WBls:0000617 + 506 min post first-cleavage Ce - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21291,20 +21345,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 507 min post first-cleavage - worm_development - WBls:0000618 - 507 min post first-cleavage Ce + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 507 min post first-cleavage + worm_development + WBls:0000618 + 507 min post first-cleavage Ce - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21326,20 +21380,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 508 min post first-cleavage - worm_development - WBls:0000619 - 508 min post first-cleavage Ce + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 508 min post first-cleavage + worm_development + WBls:0000619 + 508 min post first-cleavage Ce - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21361,20 +21415,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 509 min post first-cleavage - worm_development - WBls:0000620 - 509 min post first-cleavage Ce + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 509 min post first-cleavage + worm_development + WBls:0000620 + 509 min post first-cleavage Ce - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21396,20 +21450,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 510 min post first-cleavage - worm_development - WBls:0000621 - 510 min post first-cleavage Ce + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 510 min post first-cleavage + worm_development + WBls:0000621 + 510 min post first-cleavage Ce - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21431,20 +21485,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 511 min post first-cleavage - worm_development - WBls:0000622 - 511 min post first-cleavage Ce + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 511 min post first-cleavage + worm_development + WBls:0000622 + 511 min post first-cleavage Ce - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21466,20 +21520,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 512 min post first-cleavage - worm_development - WBls:0000623 - 512 min post first-cleavage Ce + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 512 min post first-cleavage + worm_development + WBls:0000623 + 512 min post first-cleavage Ce - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21501,20 +21555,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 513 min post first-cleavage - worm_development - WBls:0000624 - 513 min post first-cleavage Ce + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 513 min post first-cleavage + worm_development + WBls:0000624 + 513 min post first-cleavage Ce - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21536,20 +21590,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 514 min post first-cleavage - worm_development - WBls:0000625 - 514 min post first-cleavage Ce + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 514 min post first-cleavage + worm_development + WBls:0000625 + 514 min post first-cleavage Ce - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21571,20 +21625,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 515 min post first-cleavage - worm_development - WBls:0000626 - 515 min post first-cleavage Ce + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 515 min post first-cleavage + worm_development + WBls:0000626 + 515 min post first-cleavage Ce - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21606,20 +21660,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 516 min post first-cleavage - worm_development - WBls:0000627 - 516 min post first-cleavage Ce + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 516 min post first-cleavage + worm_development + WBls:0000627 + 516 min post first-cleavage Ce - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21641,20 +21695,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 517 min post first-cleavage - worm_development - WBls:0000628 - 517 min post first-cleavage Ce + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 517 min post first-cleavage + worm_development + WBls:0000628 + 517 min post first-cleavage Ce - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21676,20 +21730,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 518 min post first-cleavage - worm_development - WBls:0000629 - 518 min post first-cleavage Ce + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 518 min post first-cleavage + worm_development + WBls:0000629 + 518 min post first-cleavage Ce - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21711,20 +21765,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 519 min post first-cleavage - worm_development - WBls:0000630 - 519 min post first-cleavage Ce + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 519 min post first-cleavage + worm_development + WBls:0000630 + 519 min post first-cleavage Ce - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21746,20 +21800,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 520 min post first-cleavage - worm_development - WBls:0000631 - 520 min post first-cleavage Ce + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 520 min post first-cleavage + worm_development + WBls:0000631 + 520 min post first-cleavage Ce - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21781,20 +21835,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 521 min post first-cleavage - worm_development - WBls:0000632 - 521 min post first-cleavage Ce + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 521 min post first-cleavage + worm_development + WBls:0000632 + 521 min post first-cleavage Ce - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21816,20 +21870,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 522 min post first-cleavage - worm_development - WBls:0000633 - 522 min post first-cleavage Ce + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 522 min post first-cleavage + worm_development + WBls:0000633 + 522 min post first-cleavage Ce - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21851,20 +21905,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 523 min post first-cleavage - worm_development - WBls:0000634 - 523 min post first-cleavage Ce + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 523 min post first-cleavage + worm_development + WBls:0000634 + 523 min post first-cleavage Ce - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21886,20 +21940,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 524 min post first-cleavage - worm_development - WBls:0000635 - 524 min post first-cleavage Ce + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 524 min post first-cleavage + worm_development + WBls:0000635 + 524 min post first-cleavage Ce - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21921,20 +21975,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 525 min post first-cleavage - worm_development - WBls:0000636 - 525 min post first-cleavage Ce + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 525 min post first-cleavage + worm_development + WBls:0000636 + 525 min post first-cleavage Ce - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21956,20 +22010,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 526 min post first-cleavage - worm_development - WBls:0000637 - 526 min post first-cleavage Ce + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 526 min post first-cleavage + worm_development + WBls:0000637 + 526 min post first-cleavage Ce - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21991,20 +22045,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 527 min post first-cleavage - worm_development - WBls:0000638 - 527 min post first-cleavage Ce + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 527 min post first-cleavage + worm_development + WBls:0000638 + 527 min post first-cleavage Ce - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22026,20 +22080,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 528 min post first-cleavage - worm_development - WBls:0000639 - 528 min post first-cleavage Ce + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 528 min post first-cleavage + worm_development + WBls:0000639 + 528 min post first-cleavage Ce - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22061,20 +22115,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 529 min post first-cleavage - worm_development - WBls:0000640 - 529 min post first-cleavage Ce + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 529 min post first-cleavage + worm_development + WBls:0000640 + 529 min post first-cleavage Ce - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22096,20 +22150,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 530 min post first-cleavage - worm_development - WBls:0000641 - 530 min post first-cleavage Ce + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 530 min post first-cleavage + worm_development + WBls:0000641 + 530 min post first-cleavage Ce - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22131,20 +22185,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 531 min post first-cleavage - worm_development - WBls:0000642 - 531 min post first-cleavage Ce + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 531 min post first-cleavage + worm_development + WBls:0000642 + 531 min post first-cleavage Ce - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22166,20 +22220,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 532 min post first-cleavage - worm_development - WBls:0000643 - 532 min post first-cleavage Ce + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 532 min post first-cleavage + worm_development + WBls:0000643 + 532 min post first-cleavage Ce - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22201,20 +22255,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 533 min post first-cleavage - worm_development - WBls:0000644 - 533 min post first-cleavage Ce + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 533 min post first-cleavage + worm_development + WBls:0000644 + 533 min post first-cleavage Ce - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22236,20 +22290,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 534 min post first-cleavage - worm_development - WBls:0000645 - 534 min post first-cleavage Ce + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 534 min post first-cleavage + worm_development + WBls:0000645 + 534 min post first-cleavage Ce - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22271,20 +22325,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 535 min post first-cleavage - worm_development - WBls:0000646 - 535 min post first-cleavage Ce + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 535 min post first-cleavage + worm_development + WBls:0000646 + 535 min post first-cleavage Ce - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22306,20 +22360,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 536 min post first-cleavage - worm_development - WBls:0000647 - 536 min post first-cleavage Ce + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 536 min post first-cleavage + worm_development + WBls:0000647 + 536 min post first-cleavage Ce - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22341,20 +22395,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 537 min post first-cleavage - worm_development - WBls:0000648 - 537 min post first-cleavage Ce + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 537 min post first-cleavage + worm_development + WBls:0000648 + 537 min post first-cleavage Ce - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22376,20 +22430,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 538 min post first-cleavage - worm_development - WBls:0000649 - 538 min post first-cleavage Ce + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 538 min post first-cleavage + worm_development + WBls:0000649 + 538 min post first-cleavage Ce - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22411,20 +22465,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 539 min post first-cleavage - worm_development - WBls:0000650 - 539 min post first-cleavage Ce + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 539 min post first-cleavage + worm_development + WBls:0000650 + 539 min post first-cleavage Ce - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22446,20 +22500,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 540 min post first-cleavage - worm_development - WBls:0000651 - 540 min post first-cleavage Ce + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 540 min post first-cleavage + worm_development + WBls:0000651 + 540 min post first-cleavage Ce - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22481,20 +22535,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 541 min post first-cleavage - worm_development - WBls:0000652 - 541 min post first-cleavage Ce + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 541 min post first-cleavage + worm_development + WBls:0000652 + 541 min post first-cleavage Ce - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22516,20 +22570,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 542 min post first-cleavage - worm_development - WBls:0000653 - 542 min post first-cleavage Ce + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 542 min post first-cleavage + worm_development + WBls:0000653 + 542 min post first-cleavage Ce - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22551,20 +22605,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 543 min post first-cleavage - worm_development - WBls:0000654 - 543 min post first-cleavage Ce + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 543 min post first-cleavage + worm_development + WBls:0000654 + 543 min post first-cleavage Ce - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22586,20 +22640,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 544 min post first-cleavage - worm_development - WBls:0000655 - 544 min post first-cleavage Ce + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 544 min post first-cleavage + worm_development + WBls:0000655 + 544 min post first-cleavage Ce - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22621,20 +22675,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 545 min post first-cleavage - worm_development - WBls:0000656 - 545 min post first-cleavage Ce + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 545 min post first-cleavage + worm_development + WBls:0000656 + 545 min post first-cleavage Ce - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22656,20 +22710,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 546 min post first-cleavage - worm_development - WBls:0000657 - 546 min post first-cleavage Ce + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 546 min post first-cleavage + worm_development + WBls:0000657 + 546 min post first-cleavage Ce - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22691,20 +22745,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 547 min post first-cleavage - worm_development - WBls:0000658 - 547 min post first-cleavage Ce + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 547 min post first-cleavage + worm_development + WBls:0000658 + 547 min post first-cleavage Ce - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22726,20 +22780,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 548 min post first-cleavage - worm_development - WBls:0000659 - 548 min post first-cleavage Ce + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 548 min post first-cleavage + worm_development + WBls:0000659 + 548 min post first-cleavage Ce - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22761,20 +22815,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 549 min post first-cleavage - worm_development - WBls:0000660 - 549 min post first-cleavage Ce + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 549 min post first-cleavage + worm_development + WBls:0000660 + 549 min post first-cleavage Ce - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22796,20 +22850,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 550 min post first-cleavage - worm_development - WBls:0000661 - 550 min post first-cleavage Ce + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 550 min post first-cleavage + worm_development + WBls:0000661 + 550 min post first-cleavage Ce - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22836,24 +22890,24 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2014-11-10T09:29:36Z - WBls:0000078 - unsheathed microfilaria - Brugia mature microfilaria - mature microfilaria Bma - unsheathed microfilaria Bma - worm_development - WBls:0000663 - Brugia unsheathed microfilaria + 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. + danielaraciti + 2014-11-10T09:29:36Z + WBls:0000078 + unsheathed microfilaria + Brugia mature microfilaria + mature microfilaria Bma + unsheathed microfilaria Bma + worm_development + WBls:0000663 + Brugia unsheathed microfilaria - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -22862,23 +22916,23 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:23:44Z - MF - microfilaria nematode - microfilariae - worm_development - WBls:0000664 - Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. - microfilaria + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:23:44Z + MF + microfilaria nematode + microfilariae + worm_development + WBls:0000664 + Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. + microfilaria - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - WB:dr - WB:jl + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + WB:dr + WB:jl @@ -22893,22 +22947,22 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:25:34Z - microfilaria - Brugia MF - microfilaria Bma - worm_development - WBls:0000665 - Brugia microfilaria + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:25:34Z + microfilaria + Brugia MF + microfilaria Bma + worm_development + WBls:0000665 + Brugia microfilaria - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - WB:dr - WB:mb + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + WB:dr + WB:mb @@ -22929,20 +22983,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - danielaraciti - 2014-11-25T09:50:35Z - unsheathed microfilaria nematode - unsheathed microfilariae - worm_development - WBls:0000666 - unsheathed microfilaria + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + danielaraciti + 2014-11-25T09:50:35Z + unsheathed microfilaria nematode + unsheathed microfilariae + worm_development + WBls:0000666 + unsheathed microfilaria - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - WB:WBPerson2987 + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + WB:WBPerson2987 @@ -22951,21 +23005,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Microfilaria larvae found in nodules and ulcers. - danielaraciti - 2014-11-25T09:52:54Z - nodular microfilariae - nodular microfilariae nematode - worm_development - WBls:0000667 - nodular microfilaria + Microfilaria larvae found in nodules and ulcers. + danielaraciti + 2014-11-25T09:52:54Z + nodular microfilariae + nodular microfilariae nematode + worm_development + WBls:0000667 + nodular microfilaria - Microfilaria larvae found in nodules and ulcers. - PMID:1796232 - WB:WBPerson4055 + Microfilaria larvae found in nodules and ulcers. + PMID:1796232 + WB:WBPerson4055 @@ -22974,21 +23028,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Microfilaria larvae found subcutaneously - danielaraciti - 2014-11-25T09:52:54Z - skin microfilariae - worm_development - WBls:0000668 - skin microfilaria + Microfilaria larvae found subcutaneously + danielaraciti + 2014-11-25T09:52:54Z + skin microfilariae + worm_development + WBls:0000668 + skin microfilaria - Microfilaria larvae found subcutaneously - PMID:20772951 - PMID:7797912 - WB:WBPerson4055 + Microfilaria larvae found subcutaneously + PMID:20772951 + PMID:7797912 + WB:WBPerson4055 @@ -22997,19 +23051,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - danielaraciti - 2014-11-26T11:49:22Z - unfertilized egg - worm_development - WBls:0000669 - unfertilized egg Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + danielaraciti + 2014-11-26T11:49:22Z + unfertilized egg + worm_development + WBls:0000669 + unfertilized egg Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - WB:WBPerson2987 + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + WB:WBPerson2987 @@ -23030,17 +23084,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - 6-days post-L4 adult hermaphrodite - worm_development - WBls:0000670 - 6-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + 6-days post-L4 adult hermaphrodite + worm_development + WBls:0000670 + 6-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - WB:dr + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + WB:dr @@ -23061,17 +23115,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - 7-days post-L4 adult hermaphrodite - worm_development - WBls:0000671 - 7-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + 7-days post-L4 adult hermaphrodite + worm_development + WBls:0000671 + 7-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - WB:dr + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + WB:dr @@ -23092,17 +23146,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - 8-days post-L4 adult hermaphrodite - worm_development - WBls:0000672 - 8-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + 8-days post-L4 adult hermaphrodite + worm_development + WBls:0000672 + 8-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - WB:dr + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + WB:dr @@ -23123,17 +23177,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - 9-days post-L4 adult hermaphrodite - worm_development - WBls:0000673 - 9-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + 9-days post-L4 adult hermaphrodite + worm_development + WBls:0000673 + 9-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - WB:dr + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + WB:dr @@ -23154,17 +23208,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - 10-days post-L4 adult hermaphrodite - worm_development - WBls:0000674 - 10-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + 10-days post-L4 adult hermaphrodite + worm_development + WBls:0000674 + 10-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - WB:dr + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + WB:dr @@ -23185,17 +23239,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - 15-days post-L4 adult hermaphrodite - worm_development - WBls:0000675 - 15-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + 15-days post-L4 adult hermaphrodite + worm_development + WBls:0000675 + 15-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - WB:dr + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + WB:dr @@ -23216,17 +23270,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - 20-days post-L4 adult hermaphrodite - worm_development - WBls:0000676 - 20-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + 20-days post-L4 adult hermaphrodite + worm_development + WBls:0000676 + 20-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - WB:dr + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + WB:dr @@ -23236,19 +23290,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - jl16 - 2015-03-19T10:51:48Z - free-living stage - worm_development - WBls:0000677 - Strongyloides free-living stage + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + jl16 + 2015-03-19T10:51:48Z + free-living stage + worm_development + WBls:0000677 + Strongyloides free-living stage - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + WB:jl @@ -23258,19 +23312,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - jl16 - 2015-03-19T10:52:41Z - parasitic stage - worm_development - WBls:0000678 - Strongyloides parasitic stage + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + jl16 + 2015-03-19T10:52:41Z + parasitic stage + worm_development + WBls:0000678 + Strongyloides parasitic stage - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + WB:jl @@ -23279,20 +23333,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Larval stage that is capable of infecting a host organism. - jl16 - 2015-03-19T11:21:35Z - infective larva - worm_development - WBls:0000679 - Host organism here refers to the main host organism rather than intermediate hosts. - nematode infective stage larva + Larval stage that is capable of infecting a host organism. + jl16 + 2015-03-19T11:21:35Z + infective larva + worm_development + WBls:0000679 + Host organism here refers to the main host organism rather than intermediate hosts. + nematode infective stage larva - Larval stage that is capable of infecting a host organism. - WB:jl + Larval stage that is capable of infecting a host organism. + WB:jl @@ -23303,21 +23357,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2015-03-19T11:27:15Z - infective L3 - Strongyloides iL3 - Strongyloides infective stage larva - worm_development - WBls:0000680 - Strongyloides infective L3 + 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. + jl16 + 2015-03-19T11:27:15Z + infective L3 + Strongyloides iL3 + Strongyloides infective stage larva + worm_development + WBls:0000680 + Strongyloides infective L3 - 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. - WB:jl + 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. + WB:jl @@ -23327,20 +23381,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - jl16 - 2015-03-19T11:36:03Z - parasitic female - Strongyloides L5 - worm_development - WBls:0000681 - Strongyloides parasitic female + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + jl16 + 2015-03-19T11:36:03Z + parasitic female + Strongyloides L5 + worm_development + WBls:0000681 + Strongyloides parasitic female - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - WB:jl + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + WB:jl @@ -23350,20 +23404,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - jl16 - 2015-03-19T11:48:09Z - free-living adult - Strongyloides free-living L5 - worm_development - WBls:0000682 - Strongyloides free-living adult + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + jl16 + 2015-03-19T11:48:09Z + free-living adult + Strongyloides free-living L5 + worm_development + WBls:0000682 + Strongyloides free-living adult - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - WB:jl + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + WB:jl @@ -23384,20 +23438,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:03:09Z - L4.0 larva - worm_development - WBls:0000683 - L4.0 larva Ce + 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. + danielaraciti + 2015-06-03T09:03:09Z + L4.0 larva + worm_development + WBls:0000683 + L4.0 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23418,20 +23472,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:06:19Z - L4.1 larva - worm_development - WBls:0000684 - L4.1 larva Ce + 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. + danielaraciti + 2015-06-03T09:06:19Z + L4.1 larva + worm_development + WBls:0000684 + L4.1 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23452,20 +23506,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:09:03Z - L4.2 larva - worm_development - WBls:0000685 - L4.2 larva Ce + 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. + danielaraciti + 2015-06-03T09:09:03Z + L4.2 larva + worm_development + WBls:0000685 + L4.2 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23486,20 +23540,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:10:09Z - L4.3 larva - worm_development - WBls:0000686 - L4.3 larva Ce + 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. + danielaraciti + 2015-06-03T09:10:09Z + L4.3 larva + worm_development + WBls:0000686 + L4.3 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23520,20 +23574,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:11:12Z - L4.4 larva - worm_development - WBls:0000687 - L4.4 larva Ce + 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. + danielaraciti + 2015-06-03T09:11:12Z + L4.4 larva + worm_development + WBls:0000687 + L4.4 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23554,20 +23608,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:13:09Z - L4.5 larva - worm_development - WBls:0000688 - L4.5 larva Ce + 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. + danielaraciti + 2015-06-03T09:13:09Z + L4.5 larva + worm_development + WBls:0000688 + L4.5 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23588,20 +23642,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:15:18Z - L4.6 larva - worm_development - WBls:0000689 - L4.6 larva Ce + 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. + danielaraciti + 2015-06-03T09:15:18Z + L4.6 larva + worm_development + WBls:0000689 + L4.6 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23622,20 +23676,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:16:07Z - L4.7 larva - worm_development - WBls:0000690 - L4.7 larva Ce + 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. + danielaraciti + 2015-06-03T09:16:07Z + L4.7 larva + worm_development + WBls:0000690 + L4.7 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23656,20 +23710,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:18:02Z - L4.8 larva - worm_development - WBls:0000691 - L4.8 larva Ce + 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. + danielaraciti + 2015-06-03T09:18:02Z + L4.8 larva + worm_development + WBls:0000691 + L4.8 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23690,20 +23744,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - danielaraciti - 2015-06-03T09:20:37Z - L4.9 larva - worm_development - WBls:0000692 - L4.9 larva Ce + 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. + danielaraciti + 2015-06-03T09:20:37Z + L4.9 larva + worm_development + WBls:0000692 + L4.9 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -23725,19 +23779,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T09:27:59Z - 560 min post first-cleavage - worm_development - WBls:0000693 - 560 min post first-cleavage Ce + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T09:27:59Z + 560 min post first-cleavage + worm_development + WBls:0000693 + 560 min post first-cleavage Ce - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23759,19 +23813,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T10:07:46Z - 570 min post first-cleavage - worm_development - WBls:0000694 - 570 min post first-cleavage Ce + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T10:07:46Z + 570 min post first-cleavage + worm_development + WBls:0000694 + 570 min post first-cleavage Ce - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23793,19 +23847,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:08:29Z - 640 min post first-cleavage - worm_development - WBls:0000695 - 640 min post first-cleavage Ce + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:08:29Z + 640 min post first-cleavage + worm_development + WBls:0000695 + 640 min post first-cleavage Ce - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23827,19 +23881,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:11:15Z - 650 min post first-cleavage - worm_development - WBls:0000696 - 650 min post first-cleavage Ce + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:11:15Z + 650 min post first-cleavage + worm_development + WBls:0000696 + 650 min post first-cleavage Ce - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23861,19 +23915,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:13:05Z - 660 min post first-cleavage - worm_development - WBls:0000697 - 660 min post first-cleavage Ce + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:13:05Z + 660 min post first-cleavage + worm_development + WBls:0000697 + 660 min post first-cleavage Ce - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23895,19 +23949,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:16:33Z - 720 min post first-cleavage - worm_development - WBls:0000698 - 720 min post first-cleavage Ce + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:16:33Z + 720 min post first-cleavage + worm_development + WBls:0000698 + 720 min post first-cleavage Ce - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23929,19 +23983,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:18:49Z - 770 min post first-cleavage - worm_development - WBls:0000699 - 770 min post first-cleavage Ce + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:18:49Z + 770 min post first-cleavage + worm_development + WBls:0000699 + 770 min post first-cleavage Ce - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23963,19 +24017,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:23:34Z - 780 min post first-cleavage - worm_development - WBls:0000700 - 780 min post first-cleavage Ce + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:23:34Z + 780 min post first-cleavage + worm_development + WBls:0000700 + 780 min post first-cleavage Ce - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -23997,19 +24051,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:25:47Z - 820 min post first-cleavage - worm_development - WBls:0000701 - 820 min post first-cleavage Ce + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:25:47Z + 820 min post first-cleavage + worm_development + WBls:0000701 + 820 min post first-cleavage Ce - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -24031,19 +24085,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:28:41Z - 830 min post first-cleavage - worm_development - WBls:0000702 - 830 min post first-cleavage Ce + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:28:41Z + 830 min post first-cleavage + worm_development + WBls:0000702 + 830 min post first-cleavage Ce - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -24065,19 +24119,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:30:33Z - 850 min post first-cleavage - worm_development - WBls:0000703 - 850 min post first-cleavage Ce + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:30:33Z + 850 min post first-cleavage + worm_development + WBls:0000703 + 850 min post first-cleavage Ce - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -24086,20 +24140,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Any developmental stage in Platyhelminthes (flatworms). - jl16 - 2016-03-16T11:14:50Z - Platyhelminthes developmental stage - platyhelminth developmental stage - worm_development - WBls:0000704 - Platyhelminthes life stage + Any developmental stage in Platyhelminthes (flatworms). + jl16 + 2016-03-16T11:14:50Z + Platyhelminthes developmental stage + platyhelminth developmental stage + worm_development + WBls:0000704 + Platyhelminthes life stage - Any developmental stage in Platyhelminthes (flatworms). - WB:jl + Any developmental stage in Platyhelminthes (flatworms). + WB:jl @@ -24108,20 +24162,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - jl16 - 2016-03-16T11:17:04Z - egg - platyhelminth egg - worm_development - WBls:0000705 - Platyhelminthes egg + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + jl16 + 2016-03-16T11:17:04Z + egg + platyhelminth egg + worm_development + WBls:0000705 + Platyhelminthes egg - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - WB:jl + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + WB:jl @@ -24130,18 +24184,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-16T11:35:26Z - worm_development - WBls:0000706 - miracidium + 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. + jl16 + 2016-03-16T11:35:26Z + worm_development + WBls:0000706 + miracidium - 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. - WB:jl + 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. + WB:jl @@ -24150,18 +24204,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-16T11:42:15Z - worm_development - WBls:0000707 - sporocyst + 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. + jl16 + 2016-03-16T11:42:15Z + worm_development + WBls:0000707 + sporocyst - 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. - WB:jl + 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. + WB:jl @@ -24170,20 +24224,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-16T11:44:51Z - cercariae - worm_development - WBls:0000708 - cercarium + 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. + jl16 + 2016-03-16T11:44:51Z + cercariae + worm_development + WBls:0000708 + cercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -24198,19 +24252,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-08-16T07:46:43Z - somule - worm_development - WBls:0000709 - schistosomulum + 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. + jl16 + 2016-08-16T07:46:43Z + somule + worm_development + WBls:0000709 + schistosomulum - 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 + 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 @@ -24225,20 +24279,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - jl16 - 2016-08-16T07:51:21Z - adult - platyhelminth adult - worm_development - WBls:0000710 - Platyhelminthes adult + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + jl16 + 2016-08-16T07:51:21Z + adult + platyhelminth adult + worm_development + WBls:0000710 + Platyhelminthes adult - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - WB:jl + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + WB:jl @@ -24247,20 +24301,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A developmental stage of a Digenean (fluke). - jl16 - 2016-03-17T12:11:31Z - fluke life stage - worm_development - WBls:0000711 - Digeneans include the Schistosomatidae (blood flukes). - Digenean life stage + A developmental stage of a Digenean (fluke). + jl16 + 2016-03-17T12:11:31Z + fluke life stage + worm_development + WBls:0000711 + Digeneans include the Schistosomatidae (blood flukes). + Digenean life stage - A developmental stage of a Digenean (fluke). - WB:jl + A developmental stage of a Digenean (fluke). + WB:jl @@ -24269,18 +24323,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Any developmental stage of a Cestode (tapeworm). - jl16 - 2016-03-17T12:18:32Z - worm_development - WBls:0000712 - Cestoda life stage + Any developmental stage of a Cestode (tapeworm). + jl16 + 2016-03-17T12:18:32Z + worm_development + WBls:0000712 + Cestoda life stage - Any developmental stage of a Cestode (tapeworm). - WB:jl + Any developmental stage of a Cestode (tapeworm). + WB:jl @@ -24289,19 +24343,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-17T13:42:45Z - worm_development - hexcanth - WBls:0000713 - oncosphere + 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. + jl16 + 2016-03-17T13:42:45Z + worm_development + hexcanth + WBls:0000713 + oncosphere - 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. - WB:jl + 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. + WB:jl @@ -24316,22 +24370,22 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-17T14:27:42Z - hydatid cyst - metacestode vesicle - worm_development - WBls:0000714 - 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. - hydatid cyst stage + 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. + jl16 + 2016-03-17T14:27:42Z + hydatid cyst + metacestode vesicle + worm_development + WBls:0000714 + 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. + hydatid cyst stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -24346,21 +24400,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-17T14:40:14Z - protoscolex - worm_development - WBls:0000715 - 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. - protoscolex stage + 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. + jl16 + 2016-03-17T14:40:14Z + protoscolex + worm_development + WBls:0000715 + 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. + protoscolex stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -24369,20 +24423,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-17T15:02:35Z - metacestode stage - worm_development - WBls:0000716 - metacestode + 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. + jl16 + 2016-03-17T15:02:35Z + metacestode stage + worm_development + WBls:0000716 + metacestode - 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. - ISBN:070202788X - WB:jl + 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. + ISBN:070202788X + WB:jl @@ -24397,18 +24451,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-03-18T11:15:07Z - worm_development - WBls:0000717 - cysticercoid stage + 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. + jl16 + 2016-03-18T11:15:07Z + worm_development + WBls:0000717 + cysticercoid stage - 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 + 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 @@ -24417,21 +24471,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-04-27T12:02:59Z - NEJ - newly emerged juveniles - worm_development - WBls:0000718 - newly excysted juveniles + 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. + jl16 + 2016-04-27T12:02:59Z + NEJ + newly emerged juveniles + worm_development + WBls:0000718 + newly excysted juveniles - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -24440,19 +24494,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-04-27T12:56:49Z - worm_development - WBls:0000719 - juvenile fluke + 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. + jl16 + 2016-04-27T12:56:49Z + worm_development + WBls:0000719 + juvenile fluke - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -24461,20 +24515,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-04-27T13:01:06Z - metacercariae - worm_development - WBls:0000720 - metacercarium + 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. + jl16 + 2016-04-27T13:01:06Z + metacercariae + worm_development + WBls:0000720 + metacercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -24483,22 +24537,22 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-04-27T17:03:22Z - nematode adult intestinal phase - worm_development - WBls:0000721 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult intestinal stage + 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. + jl16 + 2016-04-27T17:03:22Z + nematode adult intestinal phase + worm_development + WBls:0000721 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult intestinal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -24507,22 +24561,22 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - jl16 - 2016-04-27T17:13:57Z - nematode adult lumenal phase - worm_development - WBls:0000722 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult lumenal stage + 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. + jl16 + 2016-04-27T17:13:57Z + nematode adult lumenal phase + worm_development + WBls:0000722 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult lumenal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -24531,18 +24585,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Onchocerca embryonic life stage. - fr7 - 2017-06-09T10:22:55Z - worm_development - WBls:0000723 - Onchocerca embryonic life stage + Onchocerca embryonic life stage. + fr7 + 2017-06-09T10:22:55Z + worm_development + WBls:0000723 + Onchocerca embryonic life stage - Onchocerca embryonic life stage. - WB:fr + Onchocerca embryonic life stage. + WB:fr @@ -24551,20 +24605,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:54:14Z - OPL:0000017 - 3 hr somule - worm_development - WBls:0000724 - 3 hr schistosomulum + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:54:14Z + OPL:0000017 + 3 hr somule + worm_development + WBls:0000724 + 3 hr schistosomulum - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -24579,20 +24633,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:56:23Z - OPL:0000172 - 24 hr somule - worm_development - WBls:0000725 - 24 hr schistosomulum + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:56:23Z + OPL:0000172 + 24 hr somule + worm_development + WBls:0000725 + 24 hr schistosomulum - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -24601,18 +24655,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Onchocerca post-embryonic life stage. - fr7 - 2017-06-09T10:23:56Z - worm_development - WBls:0000726 - Onchocerca post-embryonic life stage + Onchocerca post-embryonic life stage. + fr7 + 2017-06-09T10:23:56Z + worm_development + WBls:0000726 + Onchocerca post-embryonic life stage - Onchocerca post-embryonic life stage. - WB:fr + Onchocerca post-embryonic life stage. + WB:fr @@ -24627,18 +24681,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - fr7 - 2017-06-09T10:24:33Z - worm_development - WBls:0000727 - Onchocerca microfilaria (mammalian stage) + 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. + fr7 + 2017-06-09T10:24:33Z + worm_development + WBls:0000727 + Onchocerca microfilaria (mammalian stage) - 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 + 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 @@ -24653,18 +24707,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - fr7 - 2017-06-09T10:28:52Z - worm_development - WBls:0000728 - Onchocerca microfilaria (vector stage) + 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. + fr7 + 2017-06-09T10:28:52Z + worm_development + WBls:0000728 + Onchocerca microfilaria (vector stage) - 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 + 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 @@ -24673,18 +24727,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Adult female Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:28:29Z - worm_development - WBls:0000729 - Strongyloides free living adult female + Adult female Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:28:29Z + worm_development + WBls:0000729 + Strongyloides free living adult female - Adult female Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult female Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -24699,18 +24753,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L1 larvae that develop from the microfilariae in the arthropod vector. - fr7 - 2017-06-09T10:35:04Z - worm_development - WBls:0000730 - Onchocerca L1 larva + L1 larvae that develop from the microfilariae in the arthropod vector. + fr7 + 2017-06-09T10:35:04Z + worm_development + WBls:0000730 + Onchocerca L1 larva - L1 larvae that develop from the microfilariae in the arthropod vector. - WB:fr + L1 larvae that develop from the microfilariae in the arthropod vector. + WB:fr @@ -24725,18 +24779,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L2 larvae that develops from the L1 larvae in the arthropod vector. - fr7 - 2017-06-09T10:40:31Z - worm_development - WBls:0000731 - Onchocerca L2 larva + L2 larvae that develops from the L1 larvae in the arthropod vector. + fr7 + 2017-06-09T10:40:31Z + worm_development + WBls:0000731 + Onchocerca L2 larva - L2 larvae that develops from the L1 larvae in the arthropod vector. - WB:fr + L2 larvae that develops from the L1 larvae in the arthropod vector. + WB:fr @@ -24751,18 +24805,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - fr7 - 2017-06-09T10:45:40Z - worm_development - WBls:0000732 - Onchocerca L3 larva (vector stage) + 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. + fr7 + 2017-06-09T10:45:40Z + worm_development + WBls:0000732 + Onchocerca L3 larva (vector stage) - 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 + 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 @@ -24777,18 +24831,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - fr7 - 2017-06-09T10:48:52Z - worm_development - WBls:0000733 - Onchocerca L3 larva (mammalian stage) + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + fr7 + 2017-06-09T10:48:52Z + worm_development + WBls:0000733 + Onchocerca L3 larva (mammalian stage) - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - WB:fr + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + WB:fr @@ -24797,18 +24851,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - fr7 - 2017-06-09T10:50:17Z - worm_development - WBls:0000734 - Onchocerca L3 larva in vitro cultured D1 + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + fr7 + 2017-06-09T10:50:17Z + worm_development + WBls:0000734 + Onchocerca L3 larva in vitro cultured D1 - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + WB:fr @@ -24823,18 +24877,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - fr7 - 2017-06-09T10:51:09Z - worm_development - WBls:0000735 - Onchocerca L3 larva in vitro cultured D2 + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + fr7 + 2017-06-09T10:51:09Z + worm_development + WBls:0000735 + Onchocerca L3 larva in vitro cultured D2 - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + WB:fr @@ -24849,18 +24903,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - fr7 - 2017-06-09T10:53:33Z - worm_development - WBls:0000736 - Onchocerca L3 larva in vitro cultured D3 + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + fr7 + 2017-06-09T10:53:33Z + worm_development + WBls:0000736 + Onchocerca L3 larva in vitro cultured D3 - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + WB:fr @@ -24875,18 +24929,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - L4 larvae that develop from L3 larvae in the mammalian host. - fr7 - 2017-06-09T10:59:07Z - worm_development - WBls:0000737 - Onchocerca L4 larva + L4 larvae that develop from L3 larvae in the mammalian host. + fr7 + 2017-06-09T10:59:07Z + worm_development + WBls:0000737 + Onchocerca L4 larva - L4 larvae that develop from L3 larvae in the mammalian host. - WB:fr + L4 larvae that develop from L3 larvae in the mammalian host. + WB:fr @@ -24895,18 +24949,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - fr7 - 2017-06-09T11:01:46Z - worm_development - WBls:0000738 - Onchocerca L4 larva in vitro cultured + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + fr7 + 2017-06-09T11:01:46Z + worm_development + WBls:0000738 + Onchocerca L4 larva in vitro cultured - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - WB:fr + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + WB:fr @@ -24921,18 +24975,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Adult male that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:02:24Z - worm_development - WBls:0000739 - Onchocerca adult male + Adult male that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:02:24Z + worm_development + WBls:0000739 + Onchocerca adult male - Adult male that has developed from L4 larvae in the mammalian host. - WB:fr + Adult male that has developed from L4 larvae in the mammalian host. + WB:fr @@ -24947,18 +25001,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Adult female that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:03:10Z - worm_development - WBls:0000740 - Onchocerca adult female + Adult female that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:03:10Z + worm_development + WBls:0000740 + Onchocerca adult female - Adult female that has developed from L4 larvae in the mammalian host. - WB:fr + Adult female that has developed from L4 larvae in the mammalian host. + WB:fr @@ -24967,18 +25021,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Any developmental stage of a nematode of the Onchocerca genus. - fr7 - 2017-06-09T10:18:45Z - worm_development - WBls:0000741 - Onchocerca life stage + Any developmental stage of a nematode of the Onchocerca genus. + fr7 + 2017-06-09T10:18:45Z + worm_development + WBls:0000741 + Onchocerca life stage - Any developmental stage of a nematode of the Onchocerca genus. - WB:fr + Any developmental stage of a nematode of the Onchocerca genus. + WB:fr @@ -24987,18 +25041,18 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Adult male Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:34:19Z - worm_development - WBls:0000742 - Strongyloides free living adult male + Adult male Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:34:19Z + worm_development + WBls:0000742 + Strongyloides free living adult male - Adult male Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult male Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -25008,19 +25062,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - jl16 - 2015-11-25T11:38:04Z - post free-living L1 - worm_development - WBls:0000793 - Strongyloides post free-living L1 + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + jl16 + 2015-11-25T11:38:04Z + post free-living L1 + worm_development + WBls:0000793 + Strongyloides post free-living L1 - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + WB:jl @@ -25030,19 +25084,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - jl16 - 2015-11-25T11:39:14Z - post parasitic L1 - worm_development - WBls:0000794 - Strongyloides post parasitic L1 + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + jl16 + 2015-11-25T11:39:14Z + post parasitic L1 + worm_development + WBls:0000794 + Strongyloides post parasitic L1 - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + WB:jl @@ -25051,19 +25105,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - jl16 - 2015-11-25T11:55:54Z - post parasitic L3 - worm_development - WBls:0000795 - Strongyloides post parasitic L3 + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + jl16 + 2015-11-25T11:55:54Z + post parasitic L3 + worm_development + WBls:0000795 + Strongyloides post parasitic L3 - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + WB:jl @@ -25073,19 +25127,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - jl16 - 2015-11-25T11:57:47Z - free-living L3 - worm_development - WBls:0000796 - Strongyloides post free-living L3 + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + jl16 + 2015-11-25T11:57:47Z + free-living L3 + worm_development + WBls:0000796 + Strongyloides post free-living L3 - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + WB:jl @@ -25106,19 +25160,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - danielaraciti - 2016-10-19T10:13:23Z - 11-days post-L4 adult hermaphrodite - worm_development - WBls:0000797 - 11-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + danielaraciti + 2016-10-19T10:13:23Z + 11-days post-L4 adult hermaphrodite + worm_development + WBls:0000797 + 11-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - WB:dr + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + WB:dr @@ -25139,19 +25193,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - danielaraciti - 2016-10-19T10:13:47Z - 12-days post-L4 adult hermaphrodite - worm_development - WBls:0000798 - 12-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + danielaraciti + 2016-10-19T10:13:47Z + 12-days post-L4 adult hermaphrodite + worm_development + WBls:0000798 + 12-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - WB:dr + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + WB:dr @@ -25172,19 +25226,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - danielaraciti - 2016-10-19T10:14:11Z - 13-days post-L4 adult hermaphrodite - worm_development - WBls:0000799 - 13-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + danielaraciti + 2016-10-19T10:14:11Z + 13-days post-L4 adult hermaphrodite + worm_development + WBls:0000799 + 13-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - WB:dr + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + WB:dr @@ -25205,19 +25259,19 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - danielaraciti - 2016-10-19T10:14:40Z - 14-days post-L4 adult hermaphrodite - worm_development - WBls:0000800 - 14-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + danielaraciti + 2016-10-19T10:14:40Z + 14-days post-L4 adult hermaphrodite + worm_development + WBls:0000800 + 14-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - WB:dr + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + WB:dr @@ -25238,20 +25292,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. - danielaraciti - 2017-11-14T10:14:40Z - worm_development - WBls:0000801 - newly hatched L1 larval stage Ce + The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. + danielaraciti + 2017-11-14T10:14:40Z + worm_development + WBls:0000801 + newly hatched L1 larval stage Ce - 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 + 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 @@ -25266,20 +25320,20 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. - danielaraciti - 2017-11-14T10:15:40Z - L1 diapause - worm_development - WBls:0000802 - L1 arrest Ce + The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. + danielaraciti + 2017-11-14T10:15:40Z + L1 diapause + worm_development + WBls:0000802 + L1 arrest Ce - 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 + 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 @@ -25288,16 +25342,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during embryogenesis - worm_development - WBls:0000803 + A C. elegans life stage that occurs during embryogenesis + worm_development + WBls:0000803 C. elegans life stage occurring during embryogenesis - A C. elegans life stage that occurs during embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs during embryogenesis + WB:WBPerson2987 @@ -25306,16 +25360,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs after embryogenesis - worm_development - WBls:0000804 + A C. elegans life stage that occurs after embryogenesis + worm_development + WBls:0000804 C. elegans life stage occurring post embryogenesis - A C. elegans life stage that occurs after embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs after embryogenesis + WB:WBPerson2987 @@ -25324,16 +25378,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the elongating embryo life stage - worm_development - WBls:0000805 + A C. elegans life stage that occurs during the elongating embryo life stage + worm_development + WBls:0000805 C. elegans life stage occurring during elongating embryo - A C. elegans life stage that occurs during the elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the elongating embryo life stage + WB:WBPerson2987 @@ -25342,16 +25396,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - worm_development - WBls:0000806 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + worm_development + WBls:0000806 C. elegans life stage occurring during 1.5-fold embryo - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + WB:WBPerson2987 @@ -25360,16 +25414,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the 2-fold embryo life stage - worm_development - WBls:0000807 + A C. elegans life stage that occurs during the 2-fold embryo life stage + worm_development + WBls:0000807 C. elegans life stage occurring during 2-fold embryo - A C. elegans life stage that occurs during the 2-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 2-fold embryo life stage + WB:WBPerson2987 @@ -25378,16 +25432,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the 3-fold embryo life stage - worm_development - WBls:0000808 + A C. elegans life stage that occurs during the 3-fold embryo life stage + worm_development + WBls:0000808 C. elegans life stage occurring during 3-fold embryo - A C. elegans life stage that occurs during the 3-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 3-fold embryo life stage + WB:WBPerson2987 @@ -25396,16 +25450,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the bean embryo life stage - worm_development - WBls:0000809 + A C. elegans life stage that occurs during the bean embryo life stage + worm_development + WBls:0000809 C. elegans life stage occurring during bean embryo - A C. elegans life stage that occurs during the bean embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the bean embryo life stage + WB:WBPerson2987 @@ -25414,16 +25468,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the comma embryo life stage - worm_development - WBls:0000810 + A C. elegans life stage that occurs during the comma embryo life stage + worm_development + WBls:0000810 C. elegans life stage occurring during comma embryo - A C. elegans life stage that occurs during the comma embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the comma embryo life stage + WB:WBPerson2987 @@ -25432,16 +25486,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the fully-elongating embryo life stage - worm_development - WBls:0000811 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + worm_development + WBls:0000811 C. elegans life stage occurring during fully-elongated embryo - A C. elegans life stage that occurs during the fully-elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + WB:WBPerson2987 @@ -25450,16 +25504,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the proliferating embryo life stage - worm_development - WBls:0000812 + A C. elegans life stage that occurs during the proliferating embryo life stage + worm_development + WBls:0000812 C. elegans life stage occurring during proliferating embryo - A C. elegans life stage that occurs during the proliferating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the proliferating embryo life stage + WB:WBPerson2987 @@ -25468,16 +25522,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the blastula embryo life stage - worm_development - WBls:0000813 + A C. elegans life stage that occurs during the blastula embryo life stage + worm_development + WBls:0000813 C. elegans life stage occurring during blastula embryo - A C. elegans life stage that occurs during the blastula embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the blastula embryo life stage + WB:WBPerson2987 @@ -25486,16 +25540,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the gastrulating embryo life stage - worm_development - WBls:0000814 + A C. elegans life stage that occurs during the gastrulating embryo life stage + worm_development + WBls:0000814 C. elegans life stage occurring during gastrulation - A C. elegans life stage that occurs during the gastrulating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the gastrulating embryo life stage + WB:WBPerson2987 @@ -25504,16 +25558,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the enclosing embryo life stage - worm_development - WBls:0000815 + A C. elegans life stage that occurs during the enclosing embryo life stage + worm_development + WBls:0000815 C. elegans life stage occurring during enclosing embryo - A C. elegans life stage that occurs during the enclosing embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the enclosing embryo life stage + WB:WBPerson2987 @@ -25522,16 +25576,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the adult life stage - worm_development - WBls:0000816 + A C. elegans life stage that occurs during the adult life stage + worm_development + WBls:0000816 C. elegans life stage occurring during adulthood - A C. elegans life stage that occurs during the adult life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the adult life stage + WB:WBPerson2987 @@ -25540,16 +25594,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the larval life stage - worm_development - WBls:0000817 + A C. elegans life stage that occurs during the larval life stage + worm_development + WBls:0000817 C. elegans life stage occurring during larval stage - A C. elegans life stage that occurs during the larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the larval life stage + WB:WBPerson2987 @@ -25558,16 +25612,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the L1 larval life stage - worm_development - WBls:0000818 + A C. elegans life stage that occurs during the L1 larval life stage + worm_development + WBls:0000818 C. elegans life stage occurring during L1 larval stage - A C. elegans life stage that occurs during the L1 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L1 larval life stage + WB:WBPerson2987 @@ -25576,16 +25630,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the L2 larval life stage - worm_development - WBls:0000819 + A C. elegans life stage that occurs during the L2 larval life stage + worm_development + WBls:0000819 C. elegans life stage occurring during L2 larval stage - A C. elegans life stage that occurs during the L2 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L2 larval life stage + WB:WBPerson2987 @@ -25594,16 +25648,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the L3 larval life stage - worm_development - WBls:0000820 + A C. elegans life stage that occurs during the L3 larval life stage + worm_development + WBls:0000820 C. elegans life stage occurring during L3 larval stage - A C. elegans life stage that occurs during the L3 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L3 larval life stage + WB:WBPerson2987 @@ -25612,16 +25666,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage that occurs during the L4 larval life stage - worm_development - WBls:0000821 + A C. elegans life stage that occurs during the L4 larval life stage + worm_development + WBls:0000821 C. elegans life stage occurring during L4 larval stage - A C. elegans life stage that occurs during the L4 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L4 larval life stage + WB:WBPerson2987 @@ -25630,17 +25684,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - worm_development - WBls:0000822 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + worm_development + WBls:0000822 C. elegans life stage by minutes post first cleavage - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - WB:WBPaper00000653 - WB:WBPerson2987 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + WB:WBPaper00000653 + WB:WBPerson2987 @@ -25649,16 +25703,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - C. elegans life stage classified by the number of cells in the organism. - worm_development - WBls:0000823 + C. elegans life stage classified by the number of cells in the organism. + worm_development + WBls:0000823 C. elegans life stage by number of cells - C. elegans life stage classified by the number of cells in the organism. - WB:WBPerson2987 + C. elegans life stage classified by the number of cells in the organism. + WB:WBPerson2987 @@ -25667,16 +25721,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - C. elegans life stage that occurs during a larval molt - worm_development - WBls:0000824 + C. elegans life stage that occurs during a larval molt + worm_development + WBls:0000824 C. elegans life stage occurring during larval molt - C. elegans life stage that occurs during a larval molt - WB:WBPerson2987 + C. elegans life stage that occurs during a larval molt + WB:WBPerson2987 @@ -25685,16 +25739,16 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A life stage of the nematode Caenorhabditis elegans - worm_development - WBls:0000825 + A life stage of the nematode Caenorhabditis elegans + worm_development + WBls:0000825 C. elegans life stage - A life stage of the nematode Caenorhabditis elegans - WB:WBPerson2987 + A life stage of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -25703,17 +25757,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - worm_development - WBls:0000826 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + worm_development + WBls:0000826 obsolete set of worm life stages true - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - WB:WBPerson2987 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -25728,17 +25782,17 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - 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. - worm_development - WBls:0000827 + 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. + worm_development + WBls:0000827 post dauer stage Ce - 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 + 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 @@ -25754,25 +25808,25 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PDL4 - worm_development - WBls:0000828 - "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)." + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PDL4 + worm_development + WBls:0000828 + "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)." post dauer L4 stage Ce - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -25782,21 +25836,21 @@ A continuant cannot be part of an occurrent: use 'participates in'. An - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - worm_development - WBls:0000829 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + worm_development + WBls:0000829 post dauer adult stage Ce - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 - + diff --git a/wbls.json b/wbls.json index b08aca4..9cf64eb 100644 --- a/wbls.json +++ b/wbls.json @@ -1,47252 +1,35131 @@ { - "graphs": [ - { - "domainRangeAxioms": [ - { - "allValuesFromEdges": [ - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000002", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000002" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/BFO_0000020" - } - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002233" - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000034" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000079" - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000056", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002258", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002506", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002566", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000062", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000063", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000057", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000002" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002222", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002501", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000003" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000085", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000034" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000087", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000023" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000091", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000016" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002202", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000004" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002215", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002018", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002211", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002334", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019000", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/PATO_0000001" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002434", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002448", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002449", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002450", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002595", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000015" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0011002", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000040" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002254", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ] - }, - { - "domainClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002384", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/CARO_0000000" - ] - }, - { - "predicateId": "http://purl.obolibrary.org/obo/RO_0000053", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000020" - ] - }, - { - "predicateId": "http://purl.obolibrary.org/obo/RO_0000086", - "rangeClassIds": [ - "http://purl.obolibrary.org/obo/BFO_0000019" - ] + "graphs" : [ { + "id" : "http://purl.obolibrary.org/obo/wbls.json", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000700", + "val" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "pred" : "http://purl.org/dc/elements/1.1/description", + "val" : "Ontology about the development and life stages of the C. elegans" + }, { + "pred" : "http://purl.org/dc/elements/1.1/title", + "val" : "C. elegans Development Ontology" + }, { + "pred" : "http://purl.org/dc/terms/license", + "val" : "http://creativecommons.org/licenses/by/4.0/" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", + "val" : "OBO-Edit 2.2-rc1" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#date", + "val" : "15:11:2017 12:24" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#default-namespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", + "val" : "1.2" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#saved-by", + "val" : "chris-grove" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#comment", + "val" : "Version: 1.04" + }, { + "pred" : "http://www.w3.org/2002/07/owl#versionInfo", + "val" : "2023-04-11" + } ], + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2023-04-11/wbls.json" + }, + "nodes" : [ { + "id" : "http://purl.obolibrary.org/obo/BFO_0000002", + "lbl" : "continuant", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." } - ], - "edges": [ - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000002", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000002", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000003", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000004", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000004", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/CARO_0030000" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000015", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0003674" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000015", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0008150" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000016", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000017", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000017", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000020", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/PATO_0000001" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000051", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000051", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002180" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000062", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002087" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000062", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002404" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000063", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000063", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002090" - }, - { - "obj": "http://purl.obolibrary.org/obo/BFO_0000063", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "obj": "http://purl.obolibrary.org/obo/CARO_0030000", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/CARO_0000000" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0003674", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0003824" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0003824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0016740" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0016740", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0016772" - }, - { - "obj": "http://purl.obolibrary.org/obo/GO_0016772", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/GO_0016301" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000052", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000053", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000056", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000056", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002352" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000057", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000056" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000057", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002233" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000057", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002333" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000085", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000086", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000087", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0000092", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002013", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002014" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002013", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002015" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002017", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002013" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002017", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002025" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002018", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002017" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002022", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002023" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002022", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002024" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002086", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002087", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002405" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002090", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002087" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002090", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002412" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002131", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002131", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002180", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002018" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002203", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002202" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002212" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002578" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002211", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0012012" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002212", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002212", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002630" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002213", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002213", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002629" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002215", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002216", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002215" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002222", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/BFO_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002222", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002086" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002255", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002254" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002258", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002202" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002258", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002254" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002263", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002263", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004034" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002263", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004035" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002431" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004032" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002264", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004033" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002286", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002258" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002286", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002203" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002286", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002255" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002304", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002305", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002212" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002314", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002323", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002324", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002258" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002324", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002384" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002216" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002329" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002333" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002352" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002431" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002584" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002328", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004031" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002333", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002013" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002022" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002335" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002334", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002336" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002335", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002212" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002335", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002014" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002336", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002336", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002015" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002352", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002233" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002384", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002286" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002384", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002385" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002384", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002387" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002385", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002255" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002387", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002203" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002387", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002388" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002388", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002203" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002404", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002405" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002501" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002506" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002595" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002608" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002410", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0019000" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002404" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002304" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002305" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002412" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002411", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0012011" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002412", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002405" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002412", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002578" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002418", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002418", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004046" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002418", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004047" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002427", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002427", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002334" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002427", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002404" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002428", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002429" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002428", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002430" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002431", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002431", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002434", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002436" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002436", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002447" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002436", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002448" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002448", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002449" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002448", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002450" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002464", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002563" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002216" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002431" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002500", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002596" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002501", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002501", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002427" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002502", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002314" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002506", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002559" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002506", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002566" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002563", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002564" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002564", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002481" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002566", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002559" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002566", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0011002" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002578", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002022" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002578", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002629" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002578", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002630" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002595", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002500" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002595", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002584" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002596", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002597" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002596", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002598" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002608", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002500" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002629", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002024" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0002630", - "pred": "inverseOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002023" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004032", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004034" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004033", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0004035" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004046", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002305" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0004047", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002304" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0011002", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002448" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0012011", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0012012" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0012012", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0012012", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0019000", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0019001" - }, - { - "obj": "http://purl.obolibrary.org/obo/RO_0019000", - "pred": "subPropertyOf", - "sub": "http://purl.obolibrary.org/obo/RO_0019002" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000001", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000825" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000003", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000004", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000005", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000006", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000007", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000008", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000009", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000010", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000011", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000012", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000013", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000014", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000015", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000016", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000017", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000018", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000019", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000020", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000021", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000022", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000023", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000024", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000025", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000026", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000027", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000028", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000029", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000031", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000032", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000034", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000035", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000036", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000037", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000038", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000073" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000039", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000040", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000056" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000057" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000041", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000043", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000046", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000052", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000053", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000057", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000091" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000059", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000064", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000065", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000066", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000067", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000068", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000069", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000070", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000071", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000072", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000074", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000101" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000075", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000704" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000677" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000076", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000678" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000077", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000079", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000080", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000081", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000082", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000084", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000086", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000087", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000088", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000090", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000099" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000091", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000094" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000093" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000092", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000093", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000100" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000094", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000095" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000095", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000096" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000097", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000100", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000001" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000059" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000076" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000102" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000105" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000101", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000741" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000103" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000102", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000092" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000083" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000104", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000104" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000097" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000106" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000664" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000105", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000679" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000107" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000106", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000108" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000107", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000080" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000109" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000081" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000108", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000109", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000082" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000110", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000111", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000112", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000113", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000114", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000115", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000116", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000117", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000118", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000119", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000120", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000121", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000122", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000123", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000124", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000125", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000126", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000127", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000128", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000129", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000130", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000131", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000132", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000133", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000134", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000135", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000136", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000137", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000138", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000139", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000140", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000141", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000142", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000143", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000144", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000145", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000146", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000147", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000148", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000149", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000150", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000151", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000152", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000153", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000154", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000155", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000156", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000157", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000158", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000159", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000160", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000161", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000162", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000163", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000164", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000165", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000166", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000167", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000168", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000169", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000170", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000171", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000172", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000173", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000174", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000175", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000176", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000177", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000178", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000179", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000180", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000181", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000182", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000183", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000184", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000185", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000186", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000187", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000188", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000189", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000190", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000191", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000192", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000193", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000194", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000195", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000196", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000197", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000198", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000199", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000200", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000201", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000202", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000203", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000204", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000205", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000206", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000207", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000208", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000209", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000210", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000211", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000212", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000213", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000214", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000215", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000216", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000217", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000218", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000219", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000220", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000221", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000222", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000223", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000224", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000225", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000226", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000227", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000228", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000229", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000230", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000231", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000232", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000233", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000234", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000235", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000236", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000237", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000238", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000239", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000240", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000241", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000242", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000243", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000244", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000245", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000246", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000247", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000248", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000249", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000250", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000251", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000252", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000253", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000254", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000255", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000256", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000257", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000258", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000259", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000260", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000261", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000262", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000263", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000264", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000265", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000266", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000267", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000268", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000269", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000270", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000271", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000272", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000273", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000274", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000275", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000276", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000277", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000278", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000279", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000280", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000281", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000282", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000283", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000284", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000285", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000286", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000287", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000288", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000289", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000290", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000291", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000292", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000293", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000294", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000295", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000296", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000297", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000298", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000299", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000300", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000301", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000302", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000303", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000304", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000305", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000306", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000307", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000308", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000309", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000310", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000311", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000312", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000313", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000314", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000315", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000316", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000317", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000318", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000319", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000320", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000321", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000322", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000323", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000324", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000325", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000326", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000327", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000328", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000329", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000330", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000331", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000332", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000333", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000334", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000335", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000336", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000337", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000338", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000339", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000340", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000341", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000342", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000343", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000344", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000345", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000346", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000347", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000348", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000349", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000350", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000351", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000352", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000353", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000354", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000355", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000356", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000357", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000358", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000359", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000360", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000361", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000362", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000363", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000364", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000365", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000366", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000367", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000368", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000369", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000370", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000371", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000372", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000373", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000374", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000375", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000376", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000377", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000378", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000379", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000380", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000381", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000382", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000383", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000384", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000385", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000386", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000387", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000388", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000389", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000390", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000391", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000392", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000393", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000394", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000395", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000396", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000397", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000398", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000399", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000400", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000401", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000402", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000403", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000404", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000405", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000406", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000407", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000408", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000409", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000410", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000411", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000412", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000413", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000414", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000415", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000416", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000417", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000418", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000419", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000420", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000421", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000422", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000423", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000424", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000425", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000426", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000427", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000428", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000429", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000430", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000431", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000432", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000433", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000434", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000435", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000436", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000437", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000438", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000439", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000440", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000441", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000442", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000443", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000444", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000445", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000446", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000447", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000448", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000449", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000450", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000451", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000452", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000453", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000454", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000455", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000456", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000457", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000458", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000459", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000460", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000461", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000462", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000463", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000464", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000465", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000466", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000467", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000468", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000469", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000470", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000471", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000472", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000473", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000474", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000475", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000476", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000477", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000478", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000479", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000480", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000481", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000482", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000483", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000484", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000485", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000486", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000487", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000488", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000489", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000490", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000491", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000492", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000493", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000494", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000495", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000496", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000497", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000498", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000499", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000500", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000501", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000502", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000503", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000504", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000505", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000506", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000507", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000508", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000509", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000510", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000511", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000512", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000513", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000514", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000515", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000516", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000517", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000518", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000519", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000520", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000521", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000522", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000523", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000524", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000525", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000526", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000527", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000528", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000529", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000530", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000531", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000532", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000533", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000534", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000535", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000536", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000537", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000538", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000539", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000540", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000541", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000542", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000543", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000544", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000545", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000546", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000547", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000548", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000549", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000550", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000551", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000552", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000553", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000554", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000555", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000556", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000557", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000558", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000559", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000560", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000561", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000562", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000563", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000564", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000565", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000566", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000567", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000568", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000569", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000570", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000571", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000572", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000573", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000574", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000575", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000576", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000577", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000578", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000579", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000580", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000581", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000582", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000583", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000584", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000585", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000586", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000587", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000588", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000589", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000590", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000591", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000592", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000593", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000594", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000595", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000596", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000597", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000598", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000599", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000600", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000601", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000602", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000603", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000604", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000605", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000606", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000607", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000608", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000609", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000610", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000611", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000612", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000613", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000614", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000615", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000616", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000617", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000618", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000619", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000620", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000621", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000622", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000623", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000624", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000625", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000626", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000627", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000628", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000629", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000630", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000631", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000632", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000633", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000634", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000635", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000636", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000637", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000638", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000639", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000640", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000641", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000642", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000643", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000644", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000645", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000646", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000647", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000648", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000649", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000650", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000651", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000652", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000653", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000654", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000655", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000656", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000657", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000658", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000659", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000660", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000661", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000663", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000079" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000110" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000665" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000664", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000666" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000077" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000665", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000663" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000667" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000666", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000668" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000669", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000670", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000671", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000672", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000673", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000674", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000675", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000682" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000793" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000677", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000681" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000678", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000794" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000098" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000679", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000680" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000795" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000680", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000796" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000729" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000682", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000742" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000683", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000684", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000685", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000686", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000687", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000688", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000689", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000690", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000691", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000693", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000694", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000695", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000696", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000697", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000698", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000699", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000700", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000701", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000702", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000705" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000711" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000704", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000712" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000708", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000710" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000724" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000709", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000706" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000707" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000708" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000709" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000718" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000719" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000711", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000720" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000713" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000716" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000712", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000714" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000715" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000716", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000717" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000723", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000724", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000725" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000727" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000726", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000727", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000728" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000728", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000730" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000730", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000731" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000731", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000732" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000732", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000733" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000737" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000734" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000733", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000734", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000735" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000735", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000736" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000739" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000740" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000737", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000738" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000723" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000741", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000726" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000797", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000798", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000799", - "pred": "http://purl.obolibrary.org/obo/RO_0002087", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000800", - "pred": "http://purl.obolibrary.org/obo/BFO_0000062", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000801", - "pred": "http://purl.obolibrary.org/obo/BFO_0000050", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000003" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000805" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000811" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000803", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000812" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000022" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000816" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000817" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000804", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000827" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000015" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000806" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000807" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000808" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000809" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000805", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000810" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000018" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000806", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000019" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000807", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000020" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000808", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000016" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000809", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000017" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000810", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000021" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000811", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000004" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000014" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000813" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000814" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000812", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000815" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000005" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000813", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000010" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000814", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000013" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000815", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000041" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000058" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000060" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000061" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000062" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000063" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000064" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000065" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000066" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000067" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000068" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000069" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000070" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000074" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000111" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000670" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000671" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000672" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000673" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000674" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000675" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000676" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000797" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000798" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000799" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000816", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000800" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000023" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000032" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000046" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000818" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000819" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000820" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000821" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000824" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000817", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000024" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000801" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000818", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000802" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000819", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000027" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000820", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000035" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000038" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000683" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000684" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000685" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000686" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000687" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000688" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000689" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000690" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000691" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000821", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000692" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000112" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000113" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000114" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000115" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000116" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000117" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000118" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000119" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000120" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000121" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000122" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000123" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000124" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000125" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000126" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000127" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000128" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000129" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000130" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000131" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000132" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000133" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000134" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000135" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000136" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000137" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000138" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000139" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000140" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000141" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000142" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000143" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000144" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000145" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000146" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000147" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000148" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000149" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000150" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000151" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000152" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000153" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000154" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000155" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000156" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000157" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000158" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000159" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000160" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000161" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000162" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000163" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000164" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000165" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000166" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000167" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000168" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000169" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000170" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000171" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000172" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000173" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000174" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000175" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000176" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000177" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000178" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000179" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000180" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000181" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000182" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000183" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000184" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000185" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000186" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000187" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000188" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000189" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000190" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000191" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000192" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000193" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000194" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000195" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000196" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000197" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000198" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000199" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000200" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000201" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000202" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000203" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000204" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000205" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000206" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000207" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000208" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000209" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000210" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000211" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000212" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000213" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000214" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000215" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000216" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000217" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000218" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000219" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000220" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000221" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000222" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000223" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000224" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000225" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000226" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000227" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000228" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000229" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000230" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000231" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000232" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000233" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000234" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000235" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000236" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000237" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000238" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000239" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000240" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000241" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000242" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000243" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000244" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000245" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000246" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000247" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000248" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000249" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000250" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000251" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000252" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000253" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000254" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000255" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000256" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000257" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000258" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000259" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000260" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000261" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000262" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000263" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000264" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000265" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000266" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000267" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000268" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000269" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000270" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000271" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000272" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000273" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000274" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000275" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000276" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000277" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000278" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000279" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000280" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000281" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000282" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000283" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000284" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000285" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000286" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000287" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000288" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000289" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000290" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000291" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000292" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000293" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000294" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000295" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000296" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000297" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000298" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000299" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000300" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000301" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000302" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000303" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000304" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000305" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000306" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000307" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000308" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000309" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000310" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000311" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000312" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000313" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000314" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000315" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000316" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000317" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000318" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000319" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000320" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000321" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000322" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000323" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000324" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000325" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000326" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000327" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000328" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000329" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000330" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000331" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000332" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000333" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000334" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000335" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000336" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000337" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000338" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000339" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000340" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000341" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000342" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000343" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000344" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000345" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000346" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000347" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000348" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000349" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000350" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000351" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000352" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000353" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000354" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000355" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000356" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000357" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000358" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000359" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000360" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000361" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000362" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000363" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000364" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000365" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000366" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000367" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000368" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000369" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000370" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000371" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000372" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000373" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000374" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000375" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000376" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000377" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000378" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000379" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000380" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000381" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000382" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000383" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000384" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000385" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000386" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000387" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000388" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000389" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000390" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000391" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000392" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000393" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000394" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000395" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000396" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000397" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000398" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000399" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000400" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000401" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000402" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000403" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000404" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000405" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000406" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000407" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000408" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000409" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000410" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000411" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000412" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000413" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000414" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000415" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000416" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000417" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000418" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000419" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000420" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000421" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000422" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000423" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000424" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000425" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000426" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000427" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000428" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000429" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000430" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000431" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000432" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000433" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000434" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000435" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000436" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000437" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000438" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000439" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000440" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000441" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000442" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000443" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000444" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000445" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000446" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000447" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000448" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000449" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000450" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000451" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000452" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000453" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000454" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000455" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000456" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000457" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000458" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000459" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000460" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000461" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000462" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000463" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000464" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000465" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000466" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000467" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000468" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000469" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000470" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000471" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000472" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000473" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000474" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000475" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000476" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000477" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000478" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000479" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000480" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000481" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000482" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000483" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000484" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000485" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000486" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000487" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000488" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000489" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000490" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000491" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000492" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000493" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000494" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000495" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000496" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000497" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000498" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000499" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000500" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000501" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000502" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000503" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000504" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000505" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000506" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000507" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000508" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000509" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000510" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000511" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000512" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000513" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000514" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000515" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000516" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000517" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000518" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000519" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000520" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000521" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000522" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000523" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000524" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000525" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000526" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000527" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000528" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000529" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000530" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000531" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000532" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000533" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000534" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000535" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000536" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000537" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000538" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000539" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000540" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000541" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000542" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000543" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000544" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000545" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000546" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000547" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000548" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000549" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000550" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000551" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000552" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000553" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000554" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000555" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000556" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000557" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000558" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000559" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000560" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000561" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000562" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000563" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000564" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000565" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000566" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000567" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000568" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000569" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000570" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000571" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000572" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000573" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000574" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000575" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000576" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000577" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000578" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000579" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000580" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000581" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000582" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000583" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000584" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000585" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000586" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000587" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000588" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000589" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000590" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000591" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000592" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000593" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000594" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000595" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000596" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000597" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000598" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000599" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000600" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000601" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000602" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000603" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000604" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000605" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000606" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000607" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000608" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000609" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000610" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000611" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000612" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000613" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000614" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000615" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000616" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000617" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000618" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000619" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000620" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000621" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000622" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000623" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000624" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000625" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000626" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000627" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000628" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000629" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000630" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000631" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000632" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000633" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000634" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000635" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000636" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000637" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000638" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000639" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000640" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000641" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000642" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000643" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000644" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000645" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000646" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000647" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000648" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000649" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000650" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000651" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000652" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000653" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000654" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000655" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000656" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000657" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000658" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000659" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000660" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000661" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000693" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000694" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000695" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000696" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000697" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000698" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000699" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000700" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000701" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000702" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000822", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000703" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000006" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000007" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000008" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000009" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000011" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000012" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000071" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000072" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000084" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000085" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000086" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000087" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000088" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000089" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000823", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000090" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000025" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000026" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000028" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000029" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000030" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000031" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000033" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000034" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000036" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000037" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000039" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000040" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000042" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000043" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000044" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000045" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000047" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000048" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000049" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000050" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000051" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000053" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000054" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000824", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000055" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000002" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000669" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000803" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000804" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000822" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000825", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000823" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000052" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000828" - }, - { - "obj": "http://purl.obolibrary.org/obo/WBls_0000827", - "pred": "is_a", - "sub": "http://purl.obolibrary.org/obo/WBls_0000829" + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000003", + "lbl" : "occurrent", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An entity that has temporal parts and that happens, unfolds or develops through time." } - ], - "id": "http://purl.obolibrary.org/obo/wbls.json", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000700", - "val": "http://purl.obolibrary.org/obo/WBls_0000075" - }, - { - "pred": "http://purl.org/dc/elements/1.1/description", - "val": "Ontology about the development and life stages of the C. elegans" - }, - { - "pred": "http://purl.org/dc/elements/1.1/title", - "val": "C. elegans Development Ontology" - }, - { - "pred": "http://purl.org/dc/terms/license", - "val": "http://creativecommons.org/licenses/by/4.0/" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#auto-generated-by", - "val": "OBO-Edit 2.2-rc1" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#date", - "val": "15:11:2017 12:24" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#default-namespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", - "val": "1.2" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#saved-by", - "val": "chris-grove" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#comment", - "val": "Version: 1.04" - }, - { - "pred": "http://www.w3.org/2002/07/owl#versionInfo", - "val": "2023-01-03" - } - ], - "version": "http://purl.obolibrary.org/obo/wbls/releases/2023-01-03/wbls.json" - }, - "nodes": [ - { - "id": "http://purl.obolibrary.org/obo/BFO_0000002", - "lbl": "continuant", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000003", - "lbl": "occurrent", - "meta": { - "definition": { - "val": "An entity that has temporal parts and that happens, unfolds or develops through time." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000004", - "lbl": "independent continuant", - "meta": { - "definition": { - "val": "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000015", - "lbl": "process", - "meta": { - "definition": { - "val": "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000017", - "lbl": "realizable entity", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000020", - "lbl": "specifically dependent continuant", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000023", - "lbl": "role", - "meta": { - "definition": { - "val": "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." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000040", - "lbl": "material entity", - "meta": { - "definition": { - "val": "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000050", - "lbl": "part_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "is part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my brain is part of my body (continuant parthood, two material entities)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this day is part of this year (occurrent parthood)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "part_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000002" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000003" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000004" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000017" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000019" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000020" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0040042", - "val": "http://purl.obolibrary.org/obo/BFO_0000031" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "part_of" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Submissions:PartOf" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://www.obofoundry.org/ro/#OBO_REL:part_of" - } - ], - "definition": { - "val": "a core relation that holds between a part and its whole" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_gp2term", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ], - "xrefs": [ - { - "val": "BFO:0000050" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000051", - "lbl": "has part", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "has part" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my body has part my brain (continuant parthood, two material entities)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this year has part this day (occurrent parthood)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_part" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "a core relation that holds between a whole and its part" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000062", - "lbl": "preceded_by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "preceded by" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is preceded by" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "preceded_by" - }, - { - "pred": "http://purl.org/dc/elements/1.1/source", - "val": "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "preceded_by" - } - ], - "definition": { - "val": "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ], - "xrefs": [ - { - "val": "BFO:0000062" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000063", - "lbl": "precedes", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "precedes" - } - ], - "definition": { - "val": "x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/CARO_0000000", - "lbl": "anatomical entity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000412", - "val": "http://purl.obolibrary.org/obo/caro.owl" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0003674", - "lbl": "molecular_function", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "molecular process" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/IAO_0000115", - "lbl": "definition", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000122" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/IAO_0100001", - "lbl": "term replaced by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/PATO_0000001", - "lbl": "quality", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "quality (PATO)" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000052", - "lbl": "characteristic of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "inheres in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this fragility is a characteristic of this vase" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this red color is a characteristic of this apple" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "inheres_in" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "comments": [ - "Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing." - ], - "definition": { - "val": "a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000053", - "lbl": "has characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "bearer of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this apple is bearer of this red color" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this vase is bearer of this fragility" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "bearer_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is bearer of" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "Inverse of characteristic_of" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000056", - "lbl": "participates in", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "participates in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this blood clot participates in this blood coagulation" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this input material (or this output material) participates in this process" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this investigator participates in this investigation" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "participates_in" - } - ], - "definition": { - "val": "a relation between a continuant and a process, in which the continuant is somehow involved in the process" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000057", - "lbl": "has participant", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000111", - "val": "has participant" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this blood coagulation has participant this blood clot" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this investigation has participant this investigator" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this process has participant this input material (or this output material)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "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." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_participant" - }, - { - "pred": "http://purl.org/dc/elements/1.1/source", - "val": "http://www.obofoundry.org/ro/#OBO_REL:has_participant" - } - ], - "definition": { - "val": "a relation between a process and a continuant, in which the continuant is somehow involved in the process" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000079", - "lbl": "function of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this catalysis function is a function of this enzyme" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "function_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is function of" - } - ], - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000080", - "lbl": "quality of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this red color is a quality of this apple" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A quality inheres in its bearer at all times for which the quality exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is quality of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "quality_of" - } - ], - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000081", - "lbl": "role of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this investigator role is a role of this person" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is role of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "role_of" - } - ], - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000085", - "lbl": "has function", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_function" - } - ], - "definition": { - "val": "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000086", - "lbl": "has quality", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this apple has quality this red color" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_quality" - } - ], - "definition": { - "val": "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000087", - "lbl": "has role", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "this person has role this investigator role (more colloquially: this person has this role of investigator)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has_role" - } - ], - "definition": { - "val": "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000091", - "lbl": "has disposition", - "meta": { - "definition": { - "val": "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0000092", - "lbl": "disposition of", - "meta": { - "comments": [ - "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." - ], - "definition": { - "val": "inverse of has disposition" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002013", - "lbl": "has regulatory component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:30:46Z" - } - ], - "definition": { - "val": "A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002014", - "lbl": "has negative regulatory component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:31:01Z" - } - ], - "comments": [ - "By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'." - ], - "definition": { - "val": "A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002015", - "lbl": "has positive regulatory component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:31:17Z" - } - ], - "comments": [ - "By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'." - ], - "definition": { - "val": "A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002017", - "lbl": "has component activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:44:33Z" - } - ], - "comments": [ - "A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B." - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002018", - "lbl": "has component process", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-05-24T09:49:21Z" - } - ], - "definition": { - "val": "w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002022", - "lbl": "directly regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-17T13:52:24Z" - } - ], - "comments": [ - "Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2." - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002023", - "lbl": "directly negatively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-17T13:52:38Z" - } - ], - "definition": { - "val": "Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1.", - "xrefs": [ - "GOC:dos" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002024", - "lbl": "directly positively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-17T13:52:47Z" - } - ], - "definition": { - "val": "Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1.", - "xrefs": [ - "GOC:dos" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002025", - "lbl": "has effector activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "dos" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-09-22T14:14:36Z" - } - ], - "comments": [ - "This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations." - ], - "definition": { - "val": "A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.", - "xrefs": [ - "GOC:dos" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002086", - "lbl": "ends after", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - } - ], - "comments": [ - "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)" - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002087", - "lbl": "starts_at_end_of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "starts_at_end_of" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val": "starts_at_end_of" - } - ], - "comments": [ - "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)" - ], - "xrefs": [ - { - "val": "RO:0002087" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002090", - "lbl": "immediately precedes", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "ends_at_start_of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "meets" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002575", - "val": "http://purl.obolibrary.org/obo/BFO_0000063" - } - ], - "comments": [ - "X immediately_precedes_Y iff: end(X) simultaneous_with start(Y)" - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002131", - "lbl": "overlaps", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000424", - "val": "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "x overlaps y if and only if there exists some z such that x has part z and z part of y" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco", - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002180", - "lbl": "has component", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit." - }, - { - "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": "http://ontologydesignpatterns.org/wiki/Submissions:Componency" - } - ], - "definition": { - "val": "w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002202", - "lbl": "develops from", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Melissa Haendel" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Terry Meehan" - } - ], - "comments": [ - "This is the transitive form of the develops from relation" - ], - "definition": { - "val": "x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002203", - "lbl": "develops into", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Osumi-Sutherland" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Terry Meehan" - } - ], - "definition": { - "val": "inverse of develops from" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002211", - "lbl": "regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "David Hill" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Tanya Berardini" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "GO" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Regulation precludes parthood; the regulatory process may not be within the regulated process." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "regulates (processual)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000600", - "val": "false" - } - ], - "definition": { - "val": "p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002212", - "lbl": "negatively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "negatively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002211" - } - ], - "definition": { - "val": "p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002213", - "lbl": "positively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "positively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002211" - } - ], - "definition": { - "val": "p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002215", - "lbl": "capable of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974)" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "osteoclast SubClassOf 'capable of' some 'bone resorption'" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has function realized in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://www.ncbi.nlm.nih.gov/pubmed/20123131" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://www.ncbi.nlm.nih.gov/pubmed/21208450" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "For compatibility with BFO, this relation has a shortcut definition in which the expression \"capable of some P\" expands to \"bearer_of (some realized_by only P)\"." - } - ], - "definition": { - "val": "A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. " - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002216", - "lbl": "capable of part of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has function in" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" - } - ], - "definition": { - "val": "c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002222", - "lbl": "temporally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "https://en.wikipedia.org/wiki/Allen%27s_interval_algebra" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends." - }, - { - "pred": "http://purl.org/dc/terms/source", - "val": "https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1" - } - ], - "comments": [ - "A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations." - ], - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002233", - "lbl": "has input", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "consumes" - } - ], - "definition": { - "val": "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco", - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002254", - "lbl": "has developmental contribution from", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong]" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has developmental contribution from y iff x has some part z such that z develops from y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002255", - "lbl": "developmentally contributes to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of has developmental contribution from" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002258", - "lbl": "developmentally preceded by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "false" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "In general you should not use this relation to make assertions - use one of the more specific relations below this one" - } - ], - "comments": [ - "This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from" - ], - "definition": { - "val": "Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002263", - "lbl": "acts upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of" - } - ], - "definition": { - "val": "c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002264", - "lbl": "acts upstream of or within", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within" - } - ], - "definition": { - "val": "c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ], - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "affects" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002286", - "lbl": "developmentally succeeded by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000125" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "Inverse of developmentally preceded by" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002304", - "lbl": "causally upstream of, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "pred": "http://purl.org/dc/terms/creator", - "val": "cjm" - } - ], - "comments": [ - "holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y" - ], - "definition": { - "val": "p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002305", - "lbl": "causally upstream of, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002411" - }, - { - "pred": "http://purl.org/dc/terms/creator", - "val": "cjm" - } - ], - "definition": { - "val": "p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002314", - "lbl": "characteristic of part of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Because part_of is transitive, inheres in is a sub-relation of characteristic of part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "inheres in part of" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://www.ncbi.nlm.nih.gov/pubmed/20064205" - }, - { - "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": "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" - } - ], - "definition": { - "val": "q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002323", - "lbl": "mereotopologically related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0001900", - "val": "http://purl.obolibrary.org/obo/RO_0001901" - } - ], - "definition": { - "val": "A mereological relationship or a topological relationship" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002324", - "lbl": "developmentally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development" - } - ], - "definition": { - "val": "A relationship that holds between entities participating in some developmental process (GO:0032502)" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002327", - "lbl": "enables", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "a particular instances of akt-2 enables some instance of protein kinase activity" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "catalyzes" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "executes" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "has" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is catalyzing" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "is executing" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized." - } - ], - "definition": { - "val": "c enables p iff c is capable of p and c acts to execute p." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002328", - "lbl": "functionally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "This is a grouping relation that collects relations used for the purpose of connecting structure and function" - } - ], - "definition": { - "val": "A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002329", - "lbl": "part of structure that is capable of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "false" - } - ], - "definition": { - "val": "this relation holds between c and p when c is part of some c', and c' is capable of p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002331", - "lbl": "involved in", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "actively involved in" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "enables part of" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Involved_in" - } - ], - "definition": { - "val": "c involved_in p if and only if c enables some process p', and p' is part of p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002333", - "lbl": "enabled by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of enables" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002334", - "lbl": "regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "regulated by (processual)" - } - ], - "definition": { - "val": "inverse of regulates" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002335", - "lbl": "negatively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of negatively regulates" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002336", - "lbl": "positively regulated by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of positively regulates" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002352", - "lbl": "input of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of has input" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259", - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002384", - "lbl": "has developmental potential involving", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002385", - "lbl": "has potential to developmentally contribute to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002387", - "lbl": "has potential to develop into", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has the potential to develop into y iff x develops into y or if x is capable of developing into y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002388", - "lbl": "has potential to directly develop into", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002404", - "lbl": "causally downstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "inverse of upstream of" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002405", - "lbl": "immediately causally downstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000114", - "val": "http://purl.obolibrary.org/obo/IAO_0000428" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002407", - "lbl": "indirectly positively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "indirectly activates" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002579", - "val": "http://purl.obolibrary.org/obo/RO_0002213" - } - ], - "definition": { - "val": "p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002409", - "lbl": "indirectly negatively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "indirectly inhibits" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002579", - "val": "http://purl.obolibrary.org/obo/RO_0002212" - } - ], - "definition": { - "val": "p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002410", - "lbl": "causally related to", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents.\n\nTo define causal relations in an activity-flow type network, we make use of 3 primitives:\n\n * Temporal: how do the intervals of the two occurrents relate? \n * Is the causal relation regulatory?\n * Is the influence positive or negative?\n\nThe first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified.\n\nFor the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule.\n\nFor the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral.\n\nEach of these 3 primitives can be composed to yield a cross-product of different relation types." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - } - ], - "definition": { - "val": "relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause.", - "xrefs": [ - "https://en.wikipedia.org/wiki/Causality" - ] - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002411", - "lbl": "causally upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002412", - "lbl": "immediately causally upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002575", - "val": "http://purl.obolibrary.org/obo/RO_0002411" - } - ], - "definition": { - "val": "p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002418", - "lbl": "causally upstream of or within", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "influences (processual)" - } - ], - "definition": { - "val": "p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q." - }, - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "affects" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002427", - "lbl": "causally downstream of or within", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "inverse of causally upstream of or within" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/RO_0002259" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002428", - "lbl": "involved in regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "c involved in regulation of p if c is involved in some p' and p' regulates some p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002429", - "lbl": "involved in positive regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002428" - } - ], - "definition": { - "val": "c involved in regulation of p if c is involved in some p' and p' positively regulates some p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002430", - "lbl": "involved in negative regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002428" - } - ], - "definition": { - "val": "c involved in regulation of p if c is involved in some p' and p' negatively regulates some p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002431", - "lbl": "involved in or involved in regulation of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "OWL does not allow defining object properties via a Union" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "involved in or reguates" - } - ], - "definition": { - "val": "c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002434", - "lbl": "interacts with", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Considering relabeling as 'pairwise interacts with'" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules." - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" - }, - { - "pred": "http://www.w3.org/2004/02/skos/core#closeMatch", - "val": "http://purl.obolibrary.org/obo/MI_0914" - } - ], - "definition": { - "val": "A relationship that holds between two entities in which the processes executed by the two entities are causally connected." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" - ], - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "in pairwise interaction with" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002436", - "lbl": "molecularly interacts with", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "binds" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "molecularly binds with" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ECO_0000353" - }, - { - "pred": "http://www.w3.org/2004/02/skos/core#closeMatch", - "val": "http://purl.obolibrary.org/obo/MI_0915" - } - ], - "definition": { - "val": "An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002447", - "lbl": "phosphorylates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Axiomatization to GO to be added later" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y." - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002448", - "lbl": "directly regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - } - ], - "definition": { - "val": "The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B." - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "molecularly controls" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002449", - "lbl": "directly negatively regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "directly inhibits" - } - ], - "definition": { - "val": "The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B." - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "molecularly decreases activity of" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002450", - "lbl": "directly positively regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000118", - "val": "directly activates" - } - ], - "definition": { - "val": "The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B." - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "molecularly increases activity of" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002464", - "lbl": "helper property (not for use in curation)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning." - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002481", - "lbl": "is kinase activity", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002500", - "lbl": "causal agent in process", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "A relationship between a material entity and a process where the material entity has some causal role that influences the process" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002501", - "lbl": "causal relation between processes", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - } - ], - "definition": { - "val": "p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002502", - "lbl": "depends on", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/BFO_0000169" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002506", - "lbl": "causal relation between entities", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002559", - "lbl": "causally influenced by", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "causally influenced by (entity-centric)" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002563", - "lbl": "interaction relation helper property", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002564", - "lbl": "molecular interaction relation helper property", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002566", - "lbl": "causally influences", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "causally influences (entity-centric)" - } - ], - "definition": { - "val": "The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size)." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002578", - "lbl": "directly regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "directly regulates (processual)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0002575", - "val": "http://purl.obolibrary.org/obo/RO_0002211" - } - ], - "definition": { - "val": "p directly regulates q iff p is immediately causally upstream of q and p regulates q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002581", - "lbl": "is a defining property chain axiom", - "meta": { - "definition": { - "val": "If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002582", - "lbl": "is a defining property chain axiom where second argument is reflexive", - "meta": { - "definition": { - "val": "If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002584", - "lbl": "has part structure that is capable of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "gland SubClassOf 'has part structure that is capable of' some 'secretion by cell'" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - } - ], - "definition": { - "val": "s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002595", - "lbl": "causal relation between material entity and a process", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000116", - "val": "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Chris Mungall" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002596", - "lbl": "capable of regulating", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "pyrethroid -> growth" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Holds between c and p if and only if c is capable of some activity a, and a regulates p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002597", - "lbl": "capable of negatively regulating", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002598", - "lbl": "capable of positively regulating", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "renin -> arteriolar smooth muscle contraction" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Holds between c and p if and only if c is capable of some activity a, and a positively regulates p." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002608", - "lbl": "process has causal agent", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - } - ], - "definition": { - "val": "Inverse of 'causal agent in process'" - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002629", - "lbl": "directly positively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "directly positively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002578" - } - ], - "definition": { - "val": "p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0002630", - "lbl": "directly negatively regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000119", - "val": "http://purl.obolibrary.org/obo/ro/docs/causal-relations" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "directly negatively regulates (process to process)" - }, - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002578" - } - ], - "definition": { - "val": "p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q." - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", - "http://purl.obolibrary.org/obo/valid_for_go_ontology", - "http://purl.obolibrary.org/obo/valid_for_gocam" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004031", - "lbl": "enables subfunction", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-25T23:20:13Z" - } - ], - "definition": { - "val": "Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004032", - "lbl": "acts upstream of or within, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:49:30Z" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within,_positive_effect" - } - ], - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004033", - "lbl": "acts upstream of or within, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:49:51Z" - } - ], - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004034", - "lbl": "acts upstream of, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:53:14Z" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of,_positive_effect" - } - ], - "definition": { - "val": "c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004035", - "lbl": "acts upstream of, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-01-26T23:53:22Z" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#seeAlso", - "val": "http://wiki.geneontology.org/index.php/Acts_upstream_of,_negative_effect" - } - ], - "definition": { - "val": "c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative" - }, - "subsets": [ - "http://purl.obolibrary.org/obo/valid_for_go_gp2term" - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004046", - "lbl": "causally upstream of or within, negative effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004050", - "val": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-03-13T23:55:05Z" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0004047", - "lbl": "causally upstream of or within, positive effect", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/RO_0004049", - "val": "http://purl.obolibrary.org/obo/RO_0002418" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "cjm" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2018-03-13T23:55:19Z" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0011002", - "lbl": "regulates activity of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "Vasundra Touré" - } - ], - "definition": { - "val": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0012011", - "lbl": "indirectly causally upstream of", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "pg" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2022-09-26T06:07:17Z" - } - ], - "definition": { - "val": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0012012", - "lbl": "indirectly regulates", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "pg" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2022-09-26T06:08:01Z" - } - ], - "definition": { - "val": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0017001", - "lbl": "device utilizes material", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000112", - "val": "A diagnostic testing device utilizes a specimen." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "https://orcid.org/0000-0001-9625-1899" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000117", - "val": "https://orcid.org/0000-0003-2620-0345" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input." - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000232", - "val": "See github ticket https://github.com/oborel/obo-relations/issues/497" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2021-11-08T12:00:00Z" - } - ], - "definition": { - "val": "X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y." - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "utilizes" - } - ] - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0019000", - "lbl": "regulates characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.org/dc/terms/contributor", - "val": "https://orcid.org/0000-0002-8688-6599" - } - ], - "definition": { - "val": "A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0019001", - "lbl": "positively regulates characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.org/dc/terms/contributor", - "val": "https://orcid.org/0000-0002-8688-6599" - } - ], - "definition": { - "val": "A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/RO_0019002", - "lbl": "negatively regulates characteristic", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.org/dc/terms/contributor", - "val": "https://orcid.org/0000-0002-8688-6599" - } - ], - "definition": { - "val": "A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C." - } - }, - "type": "PROPERTY" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000001", - "lbl": "free-living nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:42:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely outside of a host organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000002", - "lbl": "all stages Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "All C. elegans development stages, including embryo, larva and adult stage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000003", - "lbl": "embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000004", - "lbl": "proliferating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "proliferating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000005", - "lbl": "blastula embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "blastula embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000006", - "lbl": "1-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-cell embryo" - }, - { - "pred": "hasExactSynonym", - "val": "fertilized egg", - "xrefs": [ - "WB:dr" - ] - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000007", - "lbl": "2-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000008", - "lbl": "4-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000009", - "lbl": "28-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000010", - "lbl": "gastrulating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "gastrulating embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000011", - "lbl": "51-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000012", - "lbl": "88-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000013", - "lbl": "enclosing embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "enclosing embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000014", - "lbl": "late cleavage stage embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late cleavage stage embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000015", - "lbl": "elongating embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "elongating embryo" - }, - { - "pred": "hasExactSynonym", - "val": "mid embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000016", - "lbl": "bean embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "bean embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000017", - "lbl": "comma embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "comma embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000018", - "lbl": "1.5-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1.5-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000019", - "lbl": "2-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000020", - "lbl": "3-fold embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-fold embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000021", - "lbl": "fully-elongated embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "fully-elongated embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "morphogenetic stage" - }, - { - "pred": "hasExactSynonym", - "val": "pre-hatched embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000022", - "lbl": "postembryonic Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000023", - "lbl": "larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000024", - "lbl": "L1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000025", - "lbl": "L1-L2 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000026", - "lbl": "L1-L2 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000027", - "lbl": "L2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000028", - "lbl": "L2-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000029", - "lbl": "L2-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000030", - "lbl": "L2d-dauer lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000031", - "lbl": "L2d-dauer molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000032", - "lbl": "dauer larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A third stage larva specialized for dispersal and long term survival.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "dauer larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000033", - "lbl": "postdauer-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000034", - "lbl": "postdauer-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000035", - "lbl": "L3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000036", - "lbl": "L3-L4 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000037", - "lbl": "L3-L4 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000038", - "lbl": "L4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000039", - "lbl": "L4-adult lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000040", - "lbl": "L4-adult molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4-adult molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000041", - "lbl": "adult Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000042", - "lbl": "L1-L2 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000043", - "lbl": "L1-L2d molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000044", - "lbl": "L1-L2d lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000045", - "lbl": "L1-L2d ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1-L2d ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000046", - "lbl": "L2d larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:0-87969-433-5" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000047", - "lbl": "L2-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000048", - "lbl": "L2d-dauer ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-dauer ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000049", - "lbl": "L3-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000050", - "lbl": "L4-adult ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000051", - "lbl": "postdauer-L4 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postdauer-L4 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000052", - "lbl": "post dauer L3 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", - "xrefs": [ - "PMID:27417559", - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL3" - }, - { - "pred": "hasExactSynonym", - "val": "dauer exit" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000053", - "lbl": "L2d-L3 molt Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 molt" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000054", - "lbl": "L2d-L3 lethargus Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 lethargus" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000055", - "lbl": "L2d-L3 ecdysis Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2d-L3 ecdysis" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000056", - "lbl": "adult male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an male animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000057", - "lbl": "adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000058", - "lbl": "pre-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "pre-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000059", - "lbl": "parasitic nematode stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:44:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000060", - "lbl": "reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000061", - "lbl": "oocyte-laying stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "oocyte-laying stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000062", - "lbl": "post-reproductive stage adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-reproductive stage adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000063", - "lbl": "newly molted young adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 0-24 hours after L4-adult molt.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "newly molted young adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000064", - "lbl": "1-day post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1-day post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000065", - "lbl": "2-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000066", - "lbl": "3-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000067", - "lbl": "4-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000068", - "lbl": "5-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000069", - "lbl": "4-7 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4-7 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000070", - "lbl": "7-10 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-10 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000071", - "lbl": "8-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000072", - "lbl": "12-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000073", - "lbl": "L4 larva male Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", - "xrefs": [ - "WB:wjc" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4 larva male" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000074", - "lbl": "11-15 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-22T14:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000075", - "lbl": "worm life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage of a worm", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000076", - "lbl": "Strongyloides life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:49:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Strongyloides developmental stage, including free-living and parasitic stages.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages Strongyloides" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000077", - "lbl": "Brugia sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000662" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "sheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia immature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "immature microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000079", - "lbl": "Brugia L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L1" - }, - { - "pred": "hasExactSynonym", - "val": "L1 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000080", - "lbl": "Brugia L2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:30:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L2" - }, - { - "pred": "hasExactSynonym", - "val": "L2 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000081", - "lbl": "Brugia L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3" - }, - { - "pred": "hasExactSynonym", - "val": "L3 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000082", - "lbl": "Brugia L4", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:31:38Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4" - }, - { - "pred": "hasExactSynonym", - "val": "L4 larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000083", - "lbl": "Brugia adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-05-30T09:32:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000084", - "lbl": "14-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:15:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "E-cell has divided into Ea and Ep. Contains 14 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000085", - "lbl": "24-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:23:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fourth cleavage of the AB lineage. Contains 24 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000086", - "lbl": "44-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:25:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Fifth cleavage of the AB lineage. Contains 44 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000087", - "lbl": "68-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:26:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Sixth cleavage of the AB lineage. Contains 68 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000088", - "lbl": "86-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-02T17:27:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "Seventh cleavage of the AB lineage. Contains 86 cells.", - "xrefs": [ - "WB:WBPaper00046121", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000089", - "lbl": "190-cells embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-15T13:19:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "P4 and M cells have finished migrating. Contains 190 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190-cells embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000090", - "lbl": "96-cell embryo Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2012-10-16T15:37:30Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96-cell embryo" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000091", - "lbl": "Brugia life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T03:18:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any Brugia developmental stage, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "all stages Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000092", - "lbl": "Brugia embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:48:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "embryo" - }, - { - "pred": "hasExactSynonym", - "val": "embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000093", - "lbl": "Brugia postembryonic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:50:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "postembryonic stage" - }, - { - "pred": "hasExactSynonym", - "val": "postembryonic Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000094", - "lbl": "Brugia early embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:55:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "early embryo" - }, - { - "pred": "hasExactSynonym", - "val": "early embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000095", - "lbl": "Brugia middle embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T04:59:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Proliferates from 100 cells to Lima bean stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "middle embryo" - }, - { - "pred": "hasExactSynonym", - "val": "middle embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000096", - "lbl": "Brugia late embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:00:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "From Lima bean to hatching.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "late embryo" - }, - { - "pred": "hasExactSynonym", - "val": "late embryo Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000097", - "lbl": "Brugia larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:12:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000098", - "lbl": "Brugia L3i", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:23:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L3i" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia vector-derived L3" - }, - { - "pred": "hasExactSynonym", - "val": "vector-derived L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "iL3" - }, - { - "pred": "hasRelatedSynonym", - "val": "infective L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000099", - "lbl": "Brugia post-infection L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:24:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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).", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post-infection L3" - }, - { - "pred": "hasExactSynonym", - "val": "post-infection L3 Bma" - }, - { - "pred": "hasRelatedSynonym", - "val": "piL3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000100", - "lbl": "Brugia young adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-12T05:37:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "young adult" - }, - { - "pred": "hasExactSynonym", - "val": "young adult Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000101", - "lbl": "Nematode life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:13:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in a nematode, including embryo, larva and adult stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "all stages nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000102", - "lbl": "nematode embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "embryo nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode egg stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000103", - "lbl": "postembryonic nematode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:14:39Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developemental life stage in a nematode that occurs from egg hatching until death.", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000104", - "lbl": "nematode adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:18:53Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L5" - }, - { - "pred": "hasExactSynonym", - "val": "adult nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000105", - "lbl": "nematode larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:19:27Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins after hatching and ends when the nematode becomes adult.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "larval stage" - }, - { - "pred": "hasExactSynonym", - "val": "larva nematode" - }, - { - "pred": "hasExactSynonym", - "val": "nematode larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000106", - "lbl": "L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:28Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The first stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000107", - "lbl": "L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:20:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The second stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L2 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000108", - "lbl": "L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:21:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The third stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L3 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000109", - "lbl": "L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:22:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The fourth stage larva of nematodes.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L4 larva nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000110", - "lbl": "sheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2013-11-25T06:23:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", - "xrefs": [ - "WB:WBPerson2987", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "sheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "sheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000111", - "lbl": "16-18 days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16-18 days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000112", - "lbl": "1 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "1 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000113", - "lbl": "2 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "2 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000114", - "lbl": "3 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "3 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000115", - "lbl": "4 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "4 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000116", - "lbl": "5 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "5 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000117", - "lbl": "6 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000118", - "lbl": "7 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000119", - "lbl": "8 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000120", - "lbl": "9 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000121", - "lbl": "10 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000122", - "lbl": "11 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000123", - "lbl": "12 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000124", - "lbl": "13 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000125", - "lbl": "14 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000126", - "lbl": "15 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000127", - "lbl": "16 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "16 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000128", - "lbl": "17 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "17 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000129", - "lbl": "18 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "18 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000130", - "lbl": "19 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "19 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000131", - "lbl": "20 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000132", - "lbl": "21 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "21 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000133", - "lbl": "22 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "22 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000134", - "lbl": "23 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "23 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000135", - "lbl": "24 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "24 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000136", - "lbl": "25 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "25 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000137", - "lbl": "26 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "26 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000138", - "lbl": "27 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "27 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000139", - "lbl": "28 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "28 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000140", - "lbl": "29 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "29 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000141", - "lbl": "30 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "30 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000142", - "lbl": "31 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "31 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000143", - "lbl": "32 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "32 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000144", - "lbl": "33 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "33 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000145", - "lbl": "34 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "34 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000146", - "lbl": "35 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "35 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000147", - "lbl": "36 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "36 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000148", - "lbl": "37 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "37 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000149", - "lbl": "38 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "38 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000150", - "lbl": "39 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "39 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000151", - "lbl": "40 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "40 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000152", - "lbl": "41 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "41 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000153", - "lbl": "42 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "42 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000154", - "lbl": "43 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "43 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000155", - "lbl": "44 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "44 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000156", - "lbl": "45 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "45 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000157", - "lbl": "46 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "46 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000158", - "lbl": "47 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "47 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000159", - "lbl": "48 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "48 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000160", - "lbl": "49 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "49 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000161", - "lbl": "50 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "50 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000162", - "lbl": "51 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "51 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000163", - "lbl": "52 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "52 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000164", - "lbl": "53 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "53 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000165", - "lbl": "54 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "54 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000166", - "lbl": "55 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "55 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000167", - "lbl": "56 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "56 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000168", - "lbl": "57 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "57 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000169", - "lbl": "58 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "58 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000170", - "lbl": "59 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "59 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000171", - "lbl": "60 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "60 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000172", - "lbl": "61 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "61 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000173", - "lbl": "62 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "62 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000174", - "lbl": "63 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "63 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000175", - "lbl": "64 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "64 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000176", - "lbl": "65 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "65 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000177", - "lbl": "66 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "66 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000178", - "lbl": "67 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "67 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000179", - "lbl": "68 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "68 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000180", - "lbl": "69 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "69 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000181", - "lbl": "70 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "70 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000182", - "lbl": "71 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "71 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000183", - "lbl": "72 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "72 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000184", - "lbl": "73 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "73 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000185", - "lbl": "74 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "74 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000186", - "lbl": "75 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "75 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000187", - "lbl": "76 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "76 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000188", - "lbl": "77 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "77 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000189", - "lbl": "78 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "78 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000190", - "lbl": "79 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "79 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000191", - "lbl": "80 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "80 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000192", - "lbl": "81 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "81 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000193", - "lbl": "82 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "82 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000194", - "lbl": "83 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "83 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000195", - "lbl": "84 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "84 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000196", - "lbl": "85 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "85 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000197", - "lbl": "86 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "86 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000198", - "lbl": "87 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "87 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000199", - "lbl": "88 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "88 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000200", - "lbl": "89 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "89 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000201", - "lbl": "90 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "90 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000202", - "lbl": "91 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "91 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000203", - "lbl": "92 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "92 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000204", - "lbl": "93 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "93 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000205", - "lbl": "94 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "94 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000206", - "lbl": "95 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "95 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000207", - "lbl": "96 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "96 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000208", - "lbl": "97 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "97 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000209", - "lbl": "98 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "98 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000210", - "lbl": "99 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "99 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000211", - "lbl": "100 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "100 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000212", - "lbl": "101 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "101 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000213", - "lbl": "102 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "102 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000214", - "lbl": "103 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "103 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000215", - "lbl": "104 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "104 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000216", - "lbl": "105 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "105 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000217", - "lbl": "106 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "106 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000218", - "lbl": "107 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "107 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000219", - "lbl": "108 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "108 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000220", - "lbl": "109 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "109 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000221", - "lbl": "110 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "110 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000222", - "lbl": "111 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "111 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000223", - "lbl": "112 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "112 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000224", - "lbl": "113 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "113 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000225", - "lbl": "114 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "114 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000226", - "lbl": "115 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "115 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000227", - "lbl": "116 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "116 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000228", - "lbl": "117 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "117 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000229", - "lbl": "118 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "118 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000230", - "lbl": "119 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "119 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000231", - "lbl": "120 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "120 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000232", - "lbl": "121 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "121 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000233", - "lbl": "122 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "122 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000234", - "lbl": "123 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "123 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000235", - "lbl": "124 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "124 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000236", - "lbl": "125 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "125 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000237", - "lbl": "126 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "126 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000238", - "lbl": "127 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "127 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000239", - "lbl": "128 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "128 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000240", - "lbl": "129 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "129 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000241", - "lbl": "130 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "130 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000242", - "lbl": "131 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "131 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000243", - "lbl": "132 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "132 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000244", - "lbl": "133 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "133 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000245", - "lbl": "134 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "134 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000246", - "lbl": "135 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "135 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000247", - "lbl": "136 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "136 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000248", - "lbl": "137 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "137 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000249", - "lbl": "138 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "138 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000250", - "lbl": "139 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "139 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000251", - "lbl": "140 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "140 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000252", - "lbl": "141 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "141 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000253", - "lbl": "142 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "142 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000254", - "lbl": "143 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "143 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000255", - "lbl": "144 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "144 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000256", - "lbl": "145 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "145 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000257", - "lbl": "146 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "146 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000258", - "lbl": "147 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "147 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000259", - "lbl": "148 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "148 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000260", - "lbl": "149 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "149 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000261", - "lbl": "150 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "150 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000262", - "lbl": "151 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "151 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000263", - "lbl": "152 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "152 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000264", - "lbl": "153 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "153 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000265", - "lbl": "154 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "154 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000266", - "lbl": "155 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "155 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000267", - "lbl": "156 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "156 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000268", - "lbl": "157 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "157 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000269", - "lbl": "158 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "158 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000270", - "lbl": "159 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "159 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000271", - "lbl": "160 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "160 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000272", - "lbl": "161 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "161 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000273", - "lbl": "162 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "162 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000274", - "lbl": "163 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "163 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000275", - "lbl": "164 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "164 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000276", - "lbl": "165 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "165 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000277", - "lbl": "166 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "166 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000278", - "lbl": "167 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "167 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000279", - "lbl": "168 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "168 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000280", - "lbl": "169 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "169 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000281", - "lbl": "170 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "170 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000282", - "lbl": "171 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "171 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000283", - "lbl": "172 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "172 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000284", - "lbl": "173 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "173 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000285", - "lbl": "174 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "174 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000286", - "lbl": "175 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "175 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000287", - "lbl": "176 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "176 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000288", - "lbl": "177 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "177 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000289", - "lbl": "178 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "178 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000290", - "lbl": "179 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "179 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000291", - "lbl": "180 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "180 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000292", - "lbl": "181 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "181 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000293", - "lbl": "182 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "182 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000294", - "lbl": "183 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "183 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000295", - "lbl": "184 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "184 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000296", - "lbl": "185 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "185 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000297", - "lbl": "186 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "186 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000298", - "lbl": "187 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "187 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000299", - "lbl": "188 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "188 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000300", - "lbl": "189 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "189 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000301", - "lbl": "190 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "190 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000302", - "lbl": "191 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "191 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000303", - "lbl": "192 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "192 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000304", - "lbl": "193 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "193 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000305", - "lbl": "194 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "194 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000306", - "lbl": "195 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "195 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000307", - "lbl": "196 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "196 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000308", - "lbl": "197 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "197 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000309", - "lbl": "198 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "198 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000310", - "lbl": "199 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "199 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000311", - "lbl": "200 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "200 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000312", - "lbl": "201 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "201 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000313", - "lbl": "202 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "202 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000314", - "lbl": "203 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "203 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000315", - "lbl": "204 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "204 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000316", - "lbl": "205 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "205 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000317", - "lbl": "206 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "206 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000318", - "lbl": "207 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "207 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000319", - "lbl": "208 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "208 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000320", - "lbl": "209 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "209 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000321", - "lbl": "210 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "210 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000322", - "lbl": "211 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "211 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000323", - "lbl": "212 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "212 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000324", - "lbl": "213 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "213 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000325", - "lbl": "214 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "214 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000326", - "lbl": "215 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "215 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000327", - "lbl": "216 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "216 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000328", - "lbl": "217 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "217 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000329", - "lbl": "218 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "218 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000330", - "lbl": "219 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "219 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000331", - "lbl": "220 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "220 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000332", - "lbl": "221 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "221 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000333", - "lbl": "222 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "222 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000334", - "lbl": "223 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "223 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000335", - "lbl": "224 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "224 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000336", - "lbl": "225 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "225 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000337", - "lbl": "226 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "226 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000338", - "lbl": "227 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "227 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000339", - "lbl": "228 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "228 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000340", - "lbl": "229 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "229 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000341", - "lbl": "230 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "230 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000342", - "lbl": "231 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "231 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000343", - "lbl": "232 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "232 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000344", - "lbl": "233 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "233 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000345", - "lbl": "234 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "234 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000346", - "lbl": "235 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "235 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000347", - "lbl": "236 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "236 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000348", - "lbl": "237 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "237 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000349", - "lbl": "238 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "238 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000350", - "lbl": "239 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "239 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000351", - "lbl": "240 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "240 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000352", - "lbl": "241 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "241 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000353", - "lbl": "242 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "242 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000354", - "lbl": "243 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "243 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000355", - "lbl": "244 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "244 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000356", - "lbl": "245 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "245 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000357", - "lbl": "246 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "246 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000358", - "lbl": "247 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "247 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000359", - "lbl": "248 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "248 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000360", - "lbl": "249 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "249 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000361", - "lbl": "250 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "250 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000362", - "lbl": "251 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "251 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000363", - "lbl": "252 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "252 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000364", - "lbl": "253 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "253 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000365", - "lbl": "254 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "254 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000366", - "lbl": "255 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "255 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000367", - "lbl": "256 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "256 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000368", - "lbl": "257 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "257 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000369", - "lbl": "258 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "258 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000370", - "lbl": "259 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "259 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000371", - "lbl": "260 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "260 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000372", - "lbl": "261 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "261 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000373", - "lbl": "262 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "262 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000374", - "lbl": "263 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "263 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000375", - "lbl": "264 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "264 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000376", - "lbl": "265 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "265 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000377", - "lbl": "266 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "266 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000378", - "lbl": "267 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "267 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000379", - "lbl": "268 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "268 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000380", - "lbl": "269 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "269 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000381", - "lbl": "270 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "270 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000382", - "lbl": "271 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "271 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000383", - "lbl": "272 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "272 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000384", - "lbl": "273 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "273 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000385", - "lbl": "274 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "274 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000386", - "lbl": "275 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "275 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000387", - "lbl": "276 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "276 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000388", - "lbl": "277 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "277 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000389", - "lbl": "278 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "278 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000390", - "lbl": "279 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "279 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000391", - "lbl": "280 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "280 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000392", - "lbl": "281 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "281 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000393", - "lbl": "282 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "282 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000394", - "lbl": "283 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "283 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000395", - "lbl": "284 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "284 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000396", - "lbl": "285 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "285 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000397", - "lbl": "286 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "286 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000398", - "lbl": "287 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "287 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000399", - "lbl": "288 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "288 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000400", - "lbl": "289 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "289 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000401", - "lbl": "290 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "290 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000402", - "lbl": "291 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "291 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000403", - "lbl": "292 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "292 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000404", - "lbl": "293 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "293 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000405", - "lbl": "294 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "294 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000406", - "lbl": "295 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "295 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000407", - "lbl": "296 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "296 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000408", - "lbl": "297 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "297 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000409", - "lbl": "298 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "298 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000410", - "lbl": "299 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "299 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000411", - "lbl": "300 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "300 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000412", - "lbl": "301 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "301 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000413", - "lbl": "302 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "302 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000414", - "lbl": "303 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "303 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000415", - "lbl": "304 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "304 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000416", - "lbl": "305 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "305 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000417", - "lbl": "306 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "306 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000418", - "lbl": "307 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "307 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000419", - "lbl": "308 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "308 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000420", - "lbl": "309 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "309 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000421", - "lbl": "310 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "310 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000422", - "lbl": "311 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "311 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000423", - "lbl": "312 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "312 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000424", - "lbl": "313 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "313 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000425", - "lbl": "314 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "314 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000426", - "lbl": "315 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "315 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000427", - "lbl": "316 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "316 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000428", - "lbl": "317 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "317 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000429", - "lbl": "318 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "318 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000430", - "lbl": "319 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "319 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000431", - "lbl": "320 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "320 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000432", - "lbl": "321 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "321 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000433", - "lbl": "322 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "322 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000434", - "lbl": "323 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "323 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000435", - "lbl": "324 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "324 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000436", - "lbl": "325 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "325 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000437", - "lbl": "326 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "326 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000438", - "lbl": "327 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "327 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000439", - "lbl": "328 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "328 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000440", - "lbl": "329 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "329 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000441", - "lbl": "330 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "330 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000442", - "lbl": "331 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "331 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000443", - "lbl": "332 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "332 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000444", - "lbl": "333 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "333 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000445", - "lbl": "334 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "334 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000446", - "lbl": "335 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "335 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000447", - "lbl": "336 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "336 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000448", - "lbl": "337 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "337 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000449", - "lbl": "338 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "338 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000450", - "lbl": "339 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "339 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000451", - "lbl": "340 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "340 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000452", - "lbl": "341 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "341 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000453", - "lbl": "342 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "342 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000454", - "lbl": "343 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "343 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000455", - "lbl": "344 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "344 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000456", - "lbl": "345 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "345 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000457", - "lbl": "346 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "346 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000458", - "lbl": "347 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "347 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000459", - "lbl": "348 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "348 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000460", - "lbl": "349 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "349 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000461", - "lbl": "350 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "350 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000462", - "lbl": "351 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "351 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000463", - "lbl": "352 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "352 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000464", - "lbl": "353 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "353 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000465", - "lbl": "354 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "354 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000466", - "lbl": "355 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "355 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000467", - "lbl": "356 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "356 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000468", - "lbl": "357 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "357 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000469", - "lbl": "358 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "358 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000470", - "lbl": "359 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "359 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000471", - "lbl": "360 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "360 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000472", - "lbl": "361 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "361 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000473", - "lbl": "362 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "362 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000474", - "lbl": "363 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "363 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000475", - "lbl": "364 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "364 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000476", - "lbl": "365 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "365 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000477", - "lbl": "366 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "366 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000478", - "lbl": "367 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "367 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000479", - "lbl": "368 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "368 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000480", - "lbl": "369 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "369 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000481", - "lbl": "370 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "370 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000482", - "lbl": "371 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "371 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000483", - "lbl": "372 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "372 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000484", - "lbl": "373 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "373 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000485", - "lbl": "374 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "374 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000486", - "lbl": "375 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "375 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000487", - "lbl": "376 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "376 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000488", - "lbl": "377 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "377 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000489", - "lbl": "378 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "378 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000490", - "lbl": "379 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "379 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000491", - "lbl": "380 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "380 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000492", - "lbl": "381 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "381 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000493", - "lbl": "382 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "382 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000494", - "lbl": "383 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "383 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000495", - "lbl": "384 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "384 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000496", - "lbl": "385 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "385 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000497", - "lbl": "386 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "386 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000498", - "lbl": "387 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "387 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000499", - "lbl": "388 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "388 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000500", - "lbl": "389 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "389 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000501", - "lbl": "390 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "390 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000502", - "lbl": "391 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "391 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000503", - "lbl": "392 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "392 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000504", - "lbl": "393 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "393 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000505", - "lbl": "394 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "394 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000506", - "lbl": "395 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "395 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000507", - "lbl": "396 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "396 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000508", - "lbl": "397 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "397 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000509", - "lbl": "398 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "398 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000510", - "lbl": "399 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "399 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000511", - "lbl": "400 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "400 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000512", - "lbl": "401 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "401 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000513", - "lbl": "402 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "402 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000514", - "lbl": "403 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "403 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000515", - "lbl": "404 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "404 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000516", - "lbl": "405 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "405 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000517", - "lbl": "406 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "406 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000518", - "lbl": "407 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "407 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000519", - "lbl": "408 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "408 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000520", - "lbl": "409 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "409 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000521", - "lbl": "410 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "410 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000522", - "lbl": "411 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "411 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000523", - "lbl": "412 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "412 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000524", - "lbl": "413 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "413 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000525", - "lbl": "414 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "414 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000526", - "lbl": "415 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "415 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000527", - "lbl": "416 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "416 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000528", - "lbl": "417 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "417 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000529", - "lbl": "418 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "418 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000530", - "lbl": "419 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "419 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000531", - "lbl": "420 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "420 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000532", - "lbl": "421 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "421 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000533", - "lbl": "422 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "422 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000534", - "lbl": "423 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "423 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000535", - "lbl": "424 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "424 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000536", - "lbl": "425 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "425 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000537", - "lbl": "426 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "426 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000538", - "lbl": "427 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "427 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000539", - "lbl": "428 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "428 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000540", - "lbl": "429 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "429 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000541", - "lbl": "430 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "430 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000542", - "lbl": "431 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "431 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000543", - "lbl": "432 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "432 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000544", - "lbl": "433 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "433 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000545", - "lbl": "434 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "434 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000546", - "lbl": "435 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "435 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000547", - "lbl": "436 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "436 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000548", - "lbl": "437 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "437 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000549", - "lbl": "438 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "438 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000550", - "lbl": "439 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "439 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000551", - "lbl": "440 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "440 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000552", - "lbl": "441 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "441 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000553", - "lbl": "442 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "442 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000554", - "lbl": "443 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "443 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000555", - "lbl": "444 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "444 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000556", - "lbl": "445 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "445 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000557", - "lbl": "446 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "446 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000558", - "lbl": "447 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "447 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000559", - "lbl": "448 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "448 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000560", - "lbl": "449 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "449 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000561", - "lbl": "450 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "450 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000562", - "lbl": "451 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "451 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000563", - "lbl": "452 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "452 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000564", - "lbl": "453 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "453 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000565", - "lbl": "454 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "454 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000566", - "lbl": "455 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "455 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000567", - "lbl": "456 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "456 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000568", - "lbl": "457 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "457 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000569", - "lbl": "458 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "458 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000570", - "lbl": "459 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "459 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000571", - "lbl": "460 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "460 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000572", - "lbl": "461 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "461 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000573", - "lbl": "462 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "462 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000574", - "lbl": "463 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "463 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000575", - "lbl": "464 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "464 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000576", - "lbl": "465 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "465 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000577", - "lbl": "466 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "466 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000578", - "lbl": "467 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "467 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000579", - "lbl": "468 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "468 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000580", - "lbl": "469 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "469 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000581", - "lbl": "470 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "470 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000582", - "lbl": "471 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "471 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000583", - "lbl": "472 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "472 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000584", - "lbl": "473 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "473 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000585", - "lbl": "474 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "474 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000586", - "lbl": "475 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "475 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000587", - "lbl": "476 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "476 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000588", - "lbl": "477 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "477 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000589", - "lbl": "478 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "478 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000590", - "lbl": "479 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "479 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000591", - "lbl": "480 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "480 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000592", - "lbl": "481 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "481 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000593", - "lbl": "482 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "482 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000594", - "lbl": "483 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "483 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000595", - "lbl": "484 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "484 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000596", - "lbl": "485 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "485 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000597", - "lbl": "486 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "486 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000598", - "lbl": "487 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "487 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000599", - "lbl": "488 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "488 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000600", - "lbl": "489 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "489 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000601", - "lbl": "490 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "490 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000602", - "lbl": "491 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "491 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000603", - "lbl": "492 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "492 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000604", - "lbl": "493 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "493 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000605", - "lbl": "494 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "494 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000606", - "lbl": "495 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "495 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000607", - "lbl": "496 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "496 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000608", - "lbl": "497 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "497 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000609", - "lbl": "498 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "498 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000610", - "lbl": "499 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "499 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000611", - "lbl": "500 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "500 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000612", - "lbl": "501 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "501 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000613", - "lbl": "502 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "502 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000614", - "lbl": "503 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "503 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000615", - "lbl": "504 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "504 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000616", - "lbl": "505 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "505 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000617", - "lbl": "506 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "506 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000618", - "lbl": "507 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "507 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000619", - "lbl": "508 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "508 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000620", - "lbl": "509 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "509 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000621", - "lbl": "510 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "510 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000622", - "lbl": "511 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "511 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000623", - "lbl": "512 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "512 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000624", - "lbl": "513 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "513 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000625", - "lbl": "514 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "514 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000626", - "lbl": "515 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "515 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000627", - "lbl": "516 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "516 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000628", - "lbl": "517 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "517 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000629", - "lbl": "518 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "518 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000630", - "lbl": "519 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "519 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000631", - "lbl": "520 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "520 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000632", - "lbl": "521 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "521 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000633", - "lbl": "522 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "522 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000634", - "lbl": "523 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "523 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000635", - "lbl": "524 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "524 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000636", - "lbl": "525 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "525 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000637", - "lbl": "526 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "526 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000638", - "lbl": "527 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "527 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000639", - "lbl": "528 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "528 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000640", - "lbl": "529 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "529 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000641", - "lbl": "530 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "530 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000642", - "lbl": "531 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "531 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000643", - "lbl": "532 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "532 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000644", - "lbl": "533 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "533 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000645", - "lbl": "534 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "534 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000646", - "lbl": "535 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "535 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000647", - "lbl": "536 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "536 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000648", - "lbl": "537 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "537 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000649", - "lbl": "538 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "538 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000650", - "lbl": "539 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "539 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000651", - "lbl": "540 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "540 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000652", - "lbl": "541 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "541 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000653", - "lbl": "542 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "542 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000654", - "lbl": "543 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "543 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000655", - "lbl": "544 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "544 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000656", - "lbl": "545 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "545 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000657", - "lbl": "546 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "546 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000658", - "lbl": "547 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "547 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000659", - "lbl": "548 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "548 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000660", - "lbl": "549 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "549 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000661", - "lbl": "550 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-04-25T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "550 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000663", - "lbl": "Brugia unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-10T09:29:36Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "val": "WBls:0000078" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unsheathed microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia mature microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "mature microfilaria Bma" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000664", - "lbl": "microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:23:44Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." - ], - "definition": { - "val": "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000665", - "lbl": "Brugia microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:25:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", - "xrefs": [ - "WB:dr", - "WB:mb" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "microfilaria" - }, - { - "pred": "hasExactSynonym", - "val": "Brugia MF" - }, - { - "pred": "hasExactSynonym", - "val": "microfilaria Bma" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000666", - "lbl": "unsheathed microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:50:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilaria nematode" - }, - { - "pred": "hasExactSynonym", - "val": "unsheathed microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000667", - "lbl": "nodular microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found in nodules and ulcers.", - "xrefs": [ - "PMID:1796232", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae" - }, - { - "pred": "hasExactSynonym", - "val": "nodular microfilariae nematode" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000668", - "lbl": "skin microfilaria", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-25T09:52:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Microfilaria larvae found subcutaneously", - "xrefs": [ - "PMID:20772951", - "PMID:7797912", - "WB:WBPerson4055" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "skin microfilariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000669", - "lbl": "unfertilized egg Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2014-11-26T11:49:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "unfertilized egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000670", - "lbl": "6-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "6-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000671", - "lbl": "7-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "7-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000672", - "lbl": "8-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "8-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000673", - "lbl": "9-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "9-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000674", - "lbl": "10-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "10-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000675", - "lbl": "15-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "15-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000676", - "lbl": "20-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "20-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000677", - "lbl": "Strongyloides free-living stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:51:48Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000678", - "lbl": "Strongyloides parasitic stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T10:52:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000679", - "lbl": "nematode infective stage larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:21:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Host organism here refers to the main host organism rather than intermediate hosts." - ], - "definition": { - "val": "Larval stage that is capable of infecting a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasNarrowSynonym", - "val": "infective larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000680", - "lbl": "Strongyloides infective L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:27:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "infective L3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides iL3" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides infective stage larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000681", - "lbl": "Strongyloides parasitic female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:36:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "parasitic female" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000682", - "lbl": "Strongyloides free-living adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-03-19T11:48:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living adult" - }, - { - "pred": "hasExactSynonym", - "val": "Strongyloides free-living L5" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000683", - "lbl": "L4.0 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:03:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.0 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000684", - "lbl": "L4.1 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:06:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.1 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000685", - "lbl": "L4.2 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:09:03Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.2 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000686", - "lbl": "L4.3 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:10:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.3 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000687", - "lbl": "L4.4 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:11:12Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.4 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000688", - "lbl": "L4.5 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:13:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.5 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000689", - "lbl": "L4.6 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:15:18Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.6 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000690", - "lbl": "L4.7 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:16:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.7 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000691", - "lbl": "L4.8 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:18:02Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.8 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000692", - "lbl": "L4.9 larva Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-06-03T09:20:37Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:WBPaper00046933", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "L4.9 larva" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000693", - "lbl": "560 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T09:27:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "560 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000694", - "lbl": "570 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T10:07:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "570 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000695", - "lbl": "640 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:08:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "640 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000696", - "lbl": "650 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:11:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "650 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000697", - "lbl": "660 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:13:05Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "660 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000698", - "lbl": "720 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:16:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "720 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000699", - "lbl": "770 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:18:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "770 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000700", - "lbl": "780 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:23:34Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "780 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000701", - "lbl": "820 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:25:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "820 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000702", - "lbl": "830 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:28:41Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "830 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000703", - "lbl": "850 min post first-cleavage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-10-06T11:30:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", - "xrefs": [ - "WB:WBPaper00000653" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "850 min post first-cleavage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000704", - "lbl": "Platyhelminthes life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:14:50Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage in Platyhelminthes (flatworms).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "Platyhelminthes developmental stage" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth developmental stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000705", - "lbl": "Platyhelminthes egg", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:17:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "egg" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth egg" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000706", - "lbl": "miracidium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:35:26Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000707", - "lbl": "sporocyst", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:42:15Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000708", - "lbl": "cercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-16T11:44:51Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "cercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000709", - "lbl": "schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:46:43Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "somule" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000710", - "lbl": "Platyhelminthes adult", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T07:51:21Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "adult" - }, - { - "pred": "hasExactSynonym", - "val": "platyhelminth adult" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000711", - "lbl": "Digenean life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:11:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "Digeneans include the Schistosomatidae (blood flukes)." - ], - "definition": { - "val": "A developmental stage of a Digenean (fluke).", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "fluke life stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000712", - "lbl": "Cestoda life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T12:18:32Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a Cestode (tapeworm).", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000713", - "lbl": "oncosphere", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T13:42:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasRelatedSynonym", - "val": "hexcanth" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000714", - "lbl": "hydatid cyst stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:27:42Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "hydatid cyst" - }, - { - "pred": "hasExactSynonym", - "val": "metacestode vesicle" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000715", - "lbl": "protoscolex stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T14:40:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "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." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:12462989", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "protoscolex" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000716", - "lbl": "metacestode", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-17T15:02:35Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "ISBN:070202788X", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacestode stage" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000717", - "lbl": "cysticercoid stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-03-18T11:15:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000718", - "lbl": "newly excysted juveniles", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:02:59Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "NEJ" - }, - { - "pred": "hasExactSynonym", - "val": "newly emerged juveniles" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000719", - "lbl": "juvenile fluke", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T12:56:49Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000720", - "lbl": "metacercarium", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T13:01:06Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:25887684", - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "metacercariae" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000721", - "lbl": "obsolete nematode adult intestinal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:03:22Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult intestinal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000722", - "lbl": "obsolete nematode adult lumenal stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-04-27T17:13:57Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "comments": [ - "This term was made obsolete because this is an anotomical part and not a life-stage." - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:19079187", - "WB:jl" - ] - }, - "deprecated": true, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "nematode adult lumenal phase" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000723", - "lbl": "Onchocerca embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:22:55Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000724", - "lbl": "3 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:54:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "3 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000017" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000725", - "lbl": "24 hr schistosomulum", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-08-16T08:56:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "24 hr somule" - } - ], - "xrefs": [ - { - "val": "OPL:0000172" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000726", - "lbl": "Onchocerca post-embryonic life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:23:56Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Onchocerca post-embryonic life stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000727", - "lbl": "Onchocerca microfilaria (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:24:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000728", - "lbl": "Onchocerca microfilaria (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:28:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000729", - "lbl": "Strongyloides free living adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:28:29Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000730", - "lbl": "Onchocerca L1 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:35:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L1 larvae that develop from the microfilariae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000731", - "lbl": "Onchocerca L2 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:40:31Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L2 larvae that develops from the L1 larvae in the arthropod vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000732", - "lbl": "Onchocerca L3 larva (vector stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:45:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000733", - "lbl": "Onchocerca L3 larva (mammalian stage)", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:48:52Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000734", - "lbl": "Onchocerca L3 larva in vitro cultured D1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:50:17Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000735", - "lbl": "Onchocerca L3 larva in vitro cultured D2", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:51:09Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000736", - "lbl": "Onchocerca L3 larva in vitro cultured D3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:53:33Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000737", - "lbl": "Onchocerca L4 larva", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:59:07Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "L4 larvae that develop from L3 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000738", - "lbl": "Onchocerca L4 larva in vitro cultured", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:01:46Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000739", - "lbl": "Onchocerca adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:02:24Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000740", - "lbl": "Onchocerca adult female", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T11:03:10Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult female that has developed from L4 larvae in the mammalian host.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000741", - "lbl": "Onchocerca life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-06-09T10:18:45Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Any developmental stage of a nematode of the Onchocerca genus.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000742", - "lbl": "Strongyloides free living adult male", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "fr7" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-07-28T14:34:19Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Adult male Strongyloides living entirely outside of a host or vector organism.", - "xrefs": [ - "WB:fr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000793", - "lbl": "Strongyloides post free-living L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:38:04Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post free-living L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000794", - "lbl": "Strongyloides post parasitic L1", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:39:14Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L1" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000795", - "lbl": "Strongyloides post parasitic L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:55:54Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "post parasitic L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000796", - "lbl": "Strongyloides post free-living L3", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "jl16" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2015-11-25T11:57:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", - "xrefs": [ - "WB:jl" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "free-living L3" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000797", - "lbl": "11-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:23Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "11-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000798", - "lbl": "12-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:13:47Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "12-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000799", - "lbl": "13-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:11Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "13-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000800", - "lbl": "14-days post-L4 adult hermaphrodite Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2016-10-19T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", - "xrefs": [ - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasBroadSynonym", - "val": "14-days post-L4 adult hermaphrodite" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000801", - "lbl": "newly hatched L1 larval stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:14:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", - "xrefs": [ - "PMC:4492366", - "WA:Wormatlas", - "WB:dr" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000802", - "lbl": "L1 arrest Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#created_by", - "val": "danielaraciti" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#creation_date", - "val": "2017-11-14T10:15:40Z" - }, - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", - "xrefs": [ - "PMC:3697962", - "WB:dr" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "L1 diapause" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000803", - "lbl": "C. elegans life stage occurring during embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000804", - "lbl": "C. elegans life stage occurring post embryogenesis", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs after embryogenesis", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000805", - "lbl": "C. elegans life stage occurring during elongating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000806", - "lbl": "C. elegans life stage occurring during 1.5-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000807", - "lbl": "C. elegans life stage occurring during 2-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 2-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000808", - "lbl": "C. elegans life stage occurring during 3-fold embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the 3-fold embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000809", - "lbl": "C. elegans life stage occurring during bean embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the bean embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000810", - "lbl": "C. elegans life stage occurring during comma embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the comma embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000811", - "lbl": "C. elegans life stage occurring during fully-elongated embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the fully-elongating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000812", - "lbl": "C. elegans life stage occurring during proliferating embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the proliferating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000813", - "lbl": "C. elegans life stage occurring during blastula embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the blastula embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000814", - "lbl": "C. elegans life stage occurring during gastrulation", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the gastrulating embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000815", - "lbl": "C. elegans life stage occurring during enclosing embryo", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the enclosing embryo life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000816", - "lbl": "C. elegans life stage occurring during adulthood", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the adult life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000817", - "lbl": "C. elegans life stage occurring during larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000818", - "lbl": "C. elegans life stage occurring during L1 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L1 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000819", - "lbl": "C. elegans life stage occurring during L2 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L2 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000820", - "lbl": "C. elegans life stage occurring during L3 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L3 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000821", - "lbl": "C. elegans life stage occurring during L4 larval stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage that occurs during the L4 larval life stage", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000822", - "lbl": "C. elegans life stage by minutes post first cleavage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", - "xrefs": [ - "WB:WBPaper00000653", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000823", - "lbl": "C. elegans life stage by number of cells", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage classified by the number of cells in the organism.", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000824", - "lbl": "C. elegans life stage occurring during larval molt", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "C. elegans life stage that occurs during a larval molt", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000825", - "lbl": "C. elegans life stage", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A life stage of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000826", - "lbl": "obsolete set of worm life stages", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", - "xrefs": [ - "WB:WBPerson2987" - ] - }, - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000827", - "lbl": "post dauer stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "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.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000828", - "lbl": "post dauer L4 stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - }, - { - "pred": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "val": "\"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).\"" - } - ], - "definition": { - "val": "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - }, - "synonyms": [ - { - "pred": "hasExactSynonym", - "val": "PDL4" - } - ] - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000829", - "lbl": "post dauer adult stage Ce", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val": "worm_development" - } - ], - "definition": { - "val": "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", - "xrefs": [ - "PMID:27417559", - "WB:WBPerson2987" - ] - } - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000016", - "lbl": "disposition", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000019", - "lbl": "quality", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/BFO_0000034", - "lbl": "function", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/CARO_0030000", - "lbl": "biological entity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0003824", - "lbl": "catalytic activity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0008150", - "lbl": "biological_process", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0016301", - "lbl": "kinase activity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0016740", - "lbl": "transferase activity", - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/GO_0016772", - "lbl": "transferase activity, transferring phosphorus-containing groups", - "type": "CLASS" - }, - { - "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" - }, - { - "id": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000589", - "val": "is defined by" - } - ] - } - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000078", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000663" - } - ], - "deprecated": true - }, - "type": "CLASS" - }, - { - "id": "http://purl.obolibrary.org/obo/WBls_0000662", - "meta": { - "basicPropertyValues": [ - { - "pred": "http://purl.obolibrary.org/obo/IAO_0000231", - "val": "http://purl.obolibrary.org/obo/IAO_0000227" - }, - { - "pred": "http://purl.obolibrary.org/obo/IAO_0100001", - "val": "http://purl.obolibrary.org/obo/WBls_0000077" - } - ], - "deprecated": true - }, - "type": "CLASS" + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000004", + "lbl" : "independent continuant", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." } - ], - "propertyChainAxioms": [ - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000050" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000051" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000062" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000062" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/BFO_0000063" - ], - "predicateId": "http://purl.obolibrary.org/obo/BFO_0000063" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0000052" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002314" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002131" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002203" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002255" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002216" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002329" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002314" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002314" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000050", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002331" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0000057" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0000057" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002131" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002131" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002202" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002254" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002584" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/BFO_0000051", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004031" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002017", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002327" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002025", - "http://purl.obolibrary.org/obo/RO_0002211" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002596" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002448" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002428" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0019000" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019000" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002212" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002213" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002597" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002430" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002430" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002212", - "http://purl.obolibrary.org/obo/RO_0019001" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019002" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0002215" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002598" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002429" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0002331" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002429" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0019001" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019001" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002213", - "http://purl.obolibrary.org/obo/RO_0019002" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0019002" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002215", - "http://purl.obolibrary.org/obo/RO_0002233" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0017001" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002233", - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002411" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002566" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002304", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004034" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002305", - "http://purl.obolibrary.org/obo/RO_0002327" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004035" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333", - "http://purl.obolibrary.org/obo/RO_0002411" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002566" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002450" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002333", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002449" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002411" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002263" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0002418" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002264" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0004046" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004033" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002327", - "http://purl.obolibrary.org/obo/RO_0004047" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0004032" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002407", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002407", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002409", - "http://purl.obolibrary.org/obo/RO_0002409" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002409", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002409", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002409" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002578", - "http://purl.obolibrary.org/obo/RO_0002578" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002211" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002629", - "http://purl.obolibrary.org/obo/RO_0002629" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002407" - }, - { - "chainPredicateIds": [ - "http://purl.obolibrary.org/obo/RO_0002630", - "http://purl.obolibrary.org/obo/RO_0002630" - ], - "predicateId": "http://purl.obolibrary.org/obo/RO_0002409" + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000015", + "lbl" : "process", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." } - ] - } - ] -} + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000016", + "lbl" : "disposition", + "type" : "CLASS" + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000017", + "lbl" : "realizable entity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000019", + "lbl" : "quality", + "type" : "CLASS" + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000020", + "lbl" : "specifically dependent continuant", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000023", + "lbl" : "role", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000034", + "lbl" : "function", + "type" : "CLASS" + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000040", + "lbl" : "material entity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000050", + "lbl" : "part_of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a core relation that holds between a part and its whole" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_gp2term", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "xrefs" : [ { + "val" : "BFO:0000050" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "is part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my brain is part of my body (continuant parthood, two material entities)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this day is part of this year (occurrent parthood)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "part_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000019" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0040042", + "val" : "http://purl.obolibrary.org/obo/BFO_0000031" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand", + "val" : "part_of" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Submissions:PartOf" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:part_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000051", + "lbl" : "has part", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a core relation that holds between a whole and its part" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "has part" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my body has part my brain (continuant parthood, two material entities)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this year has part this day (occurrent parthood)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_part" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/BFO_0000062", + "lbl" : "preceded_by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "xrefs" : [ { + "val" : "BFO:0000062" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "preceded by" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is preceded by" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "preceded_by" + }, { + "pred" : "http://purl.org/dc/elements/1.1/source", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" + }, { + "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/BFO_0000063", + "lbl" : "precedes", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "precedes" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/CARO_0000000", + "lbl" : "anatomical entity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex.", + "xrefs" : [ "CAROC:Brownsville2014" ] + }, + "comments" : [ "Following BFO, material anatomical entities may have immaterial parts (the lumen of your stomach is part of your stomach). The granularity limit follows the limits set by the Gene Ontology on the granularity limit for GO:cellular_component. Note that substances produced by an organism (sweat, feaces, urine) do not need to be part of an organism to qualify as an anatomical structure." ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/GO_0003674", + "lbl" : "molecular_function", + "type" : "CLASS", + "meta" : { + "definition" : { + "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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process.", + "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecular function" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/GO_0008150", + "lbl" : "biological_process", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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" ] + }, + "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "biological process" + }, { + "pred" : "hasExactSynonym", + "val" : "physiological process" + }, { + "pred" : "hasRelatedSynonym", + "val" : "single organism process" + }, { + "pred" : "hasRelatedSynonym", + "val" : "single-organism process" + } ], + "xrefs" : [ { + "val" : "Wikipedia:Biological_process" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-09-19T15:05:24Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/GO_0016301", + "lbl" : "kinase activity", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule.", + "xrefs" : [ "ISBN:0198506732" ] + }, + "comments" : [ "Note that this term encompasses all activities that transfer a single phosphate group; although ATP is by far the most common phosphate donor, reactions using other phosphate donors are included in this term." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "phosphokinase activity" + } ], + "xrefs" : [ { + "val" : "Reactome:R-HSA-6788855" + }, { + "val" : "Reactome:R-HSA-6788867" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/IAO_0000115", + "lbl" : "definition", + "type" : "PROPERTY" + }, { + "id" : "http://purl.obolibrary.org/obo/IAO_0100001", + "lbl" : "term replaced by", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/PATO_0000001", + "lbl" : "quality", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities", + "xrefs" : [ "PATOC:GVG" ] + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000052", + "lbl" : "characteristic of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence." + }, + "comments" : [ "Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "inheres in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this fragility is a characteristic of this vase" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this red color is a characteristic of this apple" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "inheres_in" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000053", + "lbl" : "has characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Inverse of characteristic_of" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "bearer of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this apple is bearer of this red color" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this vase is bearer of this fragility" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "bearer_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is bearer of" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000056", + "lbl" : "participates in", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a continuant and a process, in which the continuant is somehow involved in the process" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "participates in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this blood clot participates in this blood coagulation" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this input material (or this output material) participates in this process" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this investigator participates in this investigation" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "participates_in" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000057", + "lbl" : "has participant", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a process and a continuant, in which the continuant is somehow involved in the process" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000111", + "val" : "has participant" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this blood coagulation has participant this blood clot" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this investigation has participant this investigator" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this process has participant this input material (or this output material)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "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." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_participant" + }, { + "pred" : "http://purl.org/dc/elements/1.1/source", + "val" : "http://www.obofoundry.org/ro/#OBO_REL:has_participant" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000079", + "lbl" : "function of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this catalysis function is a function of this enzyme" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "function_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is function of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000080", + "lbl" : "quality of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this red color is a quality of this apple" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A quality inheres in its bearer at all times for which the quality exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is quality of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "quality_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000081", + "lbl" : "role of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this investigator role is a role of this person" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is role of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "role_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000085", + "lbl" : "has function", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_function" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000086", + "lbl" : "has quality", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this apple has quality this red color" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_quality" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000087", + "lbl" : "has role", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "this person has role this investigator role (more colloquially: this person has this role of investigator)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has_role" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000091", + "lbl" : "has disposition", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence" + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0000092", + "lbl" : "disposition of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of has disposition" + }, + "comments" : [ "This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020." ], + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002013", + "lbl" : "has regulatory component activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:30:46Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002014", + "lbl" : "has negative regulatory component activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B." + }, + "comments" : [ "By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:31:01Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002015", + "lbl" : "has positive regulatory component activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B." + }, + "comments" : [ "By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:31:17Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002017", + "lbl" : "has component activity", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:44:33Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002018", + "lbl" : "has component process", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-05-24T09:49:21Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002022", + "lbl" : "directly regulated by", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-17T13:52:24Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002023", + "lbl" : "directly negatively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1.", + "xrefs" : [ "GOC:dos" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-17T13:52:38Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002024", + "lbl" : "directly positively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1.", + "xrefs" : [ "GOC:dos" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-17T13:52:47Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002025", + "lbl" : "has effector activity", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.", + "xrefs" : [ "GOC:dos" ] + }, + "comments" : [ "This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations." ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "dos" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-09-22T14:14:36Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002086", + "lbl" : "ends after", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X ends_after Y iff: end(Y) before_or_simultaneous_with end(X)" ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002087", + "lbl" : "starts_at_end_of", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y)" ], + "xrefs" : [ { + "val" : "RO:0002087" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "starts_at_end_of" + }, { + "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/RO_0002090", + "lbl" : "immediately precedes", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "X immediately_precedes_Y iff: end(X) simultaneous_with start(Y)" ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-7073-9172" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "David Osumi-Sutherland" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "ends_at_start_of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "meets" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002575", + "val" : "http://purl.obolibrary.org/obo/BFO_0000063" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002131", + "lbl" : "overlaps", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x overlaps y if and only if there exists some z such that x has part z and z part of y" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000424", + "val" : "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002180", + "lbl" : "has component", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit." + }, { + "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" : "http://ontologydesignpatterns.org/wiki/Submissions:Componency" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002202", + "lbl" : "develops from", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y" + }, + "comments" : [ "This is the transitive form of the develops from relation" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0001-9114-8737" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-7073-9172" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-1980-3228" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002203", + "lbl" : "develops into", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of develops from" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-7073-9172" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-1980-3228" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002211", + "lbl" : "regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0001-7476-6306" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-3837-8864" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "GO" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Regulation precludes parthood; the regulatory process may not be within the regulated process." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "regulates (processual)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000600", + "val" : "false" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002212", + "lbl" : "negatively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "negatively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002211" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002213", + "lbl" : "positively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "positively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002211" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002215", + "lbl" : "capable of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. " + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974)" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "osteoclast SubClassOf 'capable of' some 'bone resorption'" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has function realized in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://www.ncbi.nlm.nih.gov/pubmed/20123131" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://www.ncbi.nlm.nih.gov/pubmed/21208450" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "For compatibility with BFO, this relation has a shortcut definition in which the expression \"capable of some P\" expands to \"bearer_of (some realized_by only P)\"." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002216", + "lbl" : "capable of part of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has function in" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002222", + "lbl" : "temporally related to", + "type" : "PROPERTY", + "meta" : { + "comments" : [ "A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations." ], + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "https://en.wikipedia.org/wiki/Allen%27s_interval_algebra" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends." + }, { + "pred" : "http://purl.org/dc/terms/source", + "val" : "https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002233", + "lbl" : "has input", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "consumes" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002254", + "lbl" : "has developmental contribution from", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has developmental contribution from y iff x has some part z such that z develops from y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "Mammalian thymus has developmental contribution from some pharyngeal pouch 3; Mammalian thymus has developmental contribution from some pharyngeal pouch 4 [Kardong]" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002255", + "lbl" : "developmentally contributes to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of has developmental contribution from" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002258", + "lbl" : "developmentally preceded by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p" + }, + "comments" : [ "This relation groups together various other developmental relations. It is fairly generic, encompassing induction, developmental contribution and direct and transitive develops from" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "false" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "In general you should not use this relation to make assertions - use one of the more specific relations below this one" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002263", + "lbl" : "acts upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002264", + "lbl" : "acts upstream of or within", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "affects" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002286", + "lbl" : "developmentally succeeded by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Inverse of developmentally preceded by" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000125" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002304", + "lbl" : "causally upstream of, positive effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q." + }, + "comments" : [ "holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y" ], + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "pred" : "http://purl.org/dc/terms/creator", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002305", + "lbl" : "causally upstream of, negative effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "pred" : "http://purl.org/dc/terms/creator", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002314", + "lbl" : "characteristic of part of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Because part_of is transitive, inheres in is a sub-relation of characteristic of part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "inheres in part of" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://www.ncbi.nlm.nih.gov/pubmed/20064205" + }, { + "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" : "http://purl.obolibrary.org/obo/ro/docs/reflexivity/" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002323", + "lbl" : "mereotopologically related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A mereological relationship or a topological relationship" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0001900", + "val" : "http://purl.obolibrary.org/obo/RO_0001901" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002324", + "lbl" : "developmentally related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between entities participating in some developmental process (GO:0032502)" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving organismal development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002327", + "lbl" : "enables", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c enables p iff c is capable of p and c acts to execute p." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "a particular instances of akt-2 enables some instance of protein kinase activity" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "catalyzes" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "executes" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "has" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is catalyzing" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "is executing" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002328", + "lbl" : "functionally related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "This is a grouping relation that collects relations used for the purpose of connecting structure and function" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002329", + "lbl" : "part of structure that is capable of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "this relation holds between c and p when c is part of some c', and c' is capable of p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "false" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002331", + "lbl" : "involved in", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved_in p if and only if c enables some process p', and p' is part of p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "actively involved in" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "enables part of" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Involved_in" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002333", + "lbl" : "enabled by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of enables" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002334", + "lbl" : "regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of regulates" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "regulated by (processual)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002335", + "lbl" : "negatively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of negatively regulates" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002336", + "lbl" : "positively regulated by", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of positively regulates" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002352", + "lbl" : "input of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of has input" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002384", + "lbl" : "has developmental potential involving", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002385", + "lbl" : "has potential to developmentally contribute to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002387", + "lbl" : "has potential to develop into", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has the potential to develop into y iff x develops into y or if x is capable of developing into y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002388", + "lbl" : "has potential to directly develop into", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002404", + "lbl" : "causally downstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of upstream of" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002405", + "lbl" : "immediately causally downstream of", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000114", + "val" : "http://purl.obolibrary.org/obo/IAO_0000428" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002407", + "lbl" : "indirectly positively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "indirectly activates" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002579", + "val" : "http://purl.obolibrary.org/obo/RO_0002213" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002409", + "lbl" : "indirectly negatively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "indirectly inhibits" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002579", + "val" : "http://purl.obolibrary.org/obo/RO_0002212" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002410", + "lbl" : "causally related to", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "relation that links two events, processes, states, or objects such that one event, process, state, or object (a cause) contributes to the production of another event, process, state, or object (an effect) where the cause is partly or wholly responsible for the effect, and the effect is partly or wholly dependent on the cause.", + "xrefs" : [ "https://en.wikipedia.org/wiki/Causality" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents.\n\nTo define causal relations in an activity-flow type network, we make use of 3 primitives:\n\n * Temporal: how do the intervals of the two occurrents relate? \n * Is the causal relation regulatory?\n * Is the influence positive or negative?\n\nThe first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified.\n\nFor the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule.\n\nFor the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral.\n\nEach of these 3 primitives can be composed to yield a cross-product of different relation types." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002411", + "lbl" : "causally upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002412", + "lbl" : "immediately causally upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002575", + "val" : "http://purl.obolibrary.org/obo/RO_0002411" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002418", + "lbl" : "causally upstream of or within", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q." + }, + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "affects" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "influences (processual)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002427", + "lbl" : "causally downstream of or within", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "inverse of causally upstream of or within" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/RO_0002259" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002428", + "lbl" : "involved in regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in regulation of p if c is involved in some p' and p' regulates some p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002429", + "lbl" : "involved in positive regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in regulation of p if c is involved in some p' and p' positively regulates some p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002428" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002430", + "lbl" : "involved in negative regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in regulation of p if c is involved in some p' and p' negatively regulates some p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002428" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002431", + "lbl" : "involved in or involved in regulation of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "OWL does not allow defining object properties via a Union" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "involved in or reguates" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002434", + "lbl" : "interacts with", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between two entities in which the processes executed by the two entities are causally connected." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "in pairwise interaction with" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Considering relabeling as 'pairwise interacts with'" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules." + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" + }, { + "pred" : "http://www.w3.org/2004/02/skos/core#closeMatch", + "val" : "http://purl.obolibrary.org/obo/MI_0914" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002436", + "lbl" : "molecularly interacts with", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "binds" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "molecularly binds with" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ECO_0000353" + }, { + "pred" : "http://www.w3.org/2004/02/skos/core#closeMatch", + "val" : "http://purl.obolibrary.org/obo/MI_0915" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002447", + "lbl" : "phosphorylates", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Axiomatization to GO to be added later" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002448", + "lbl" : "directly regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B." + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecularly controls" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002449", + "lbl" : "directly negatively regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B." + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecularly decreases activity of" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "directly inhibits" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002450", + "lbl" : "directly positively regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B." + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "molecularly increases activity of" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000118", + "val" : "directly activates" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002464", + "lbl" : "helper property (not for use in curation)", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002481", + "lbl" : "is kinase activity", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002500", + "lbl" : "causal agent in process", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship between a material entity and a process where the material entity has some causal role that influences the process" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002501", + "lbl" : "causal relation between processes", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002502", + "lbl" : "depends on", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/BFO_0000169" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002506", + "lbl" : "causal relation between entities", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002559", + "lbl" : "causally influenced by", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "causally influenced by (entity-centric)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002563", + "lbl" : "interaction relation helper property", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://ontologydesignpatterns.org/wiki/Submissions:N-Ary_Relation_Pattern_%28OWL_2%29" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://purl.obolibrary.org/obo/ro/docs/interaction-relations/" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002564", + "lbl" : "molecular interaction relation helper property", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002566", + "lbl" : "causally influences", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size)." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "causally influences (entity-centric)" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002578", + "lbl" : "directly regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p directly regulates q iff p is immediately causally upstream of q and p regulates q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "directly regulates (processual)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0002575", + "val" : "http://purl.obolibrary.org/obo/RO_0002211" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002581", + "lbl" : "is a defining property chain axiom", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL" + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002582", + "lbl" : "is a defining property chain axiom where second argument is reflexive", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R." + } + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002584", + "lbl" : "has part structure that is capable of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "gland SubClassOf 'has part structure that is capable of' some 'secretion by cell'" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002595", + "lbl" : "causal relation between material entity and a process", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000116", + "val" : "Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002596", + "lbl" : "capable of regulating", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between c and p if and only if c is capable of some activity a, and a regulates p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "pyrethroid -> growth" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002597", + "lbl" : "capable of negatively regulating", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002598", + "lbl" : "capable of positively regulating", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between c and p if and only if c is capable of some activity a, and a positively regulates p." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "renin -> arteriolar smooth muscle contraction" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002608", + "lbl" : "process has causal agent", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Inverse of 'causal agent in process'" + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002629", + "lbl" : "directly positively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "directly positively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002578" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0002630", + "lbl" : "directly negatively regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q." + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000119", + "val" : "http://purl.obolibrary.org/obo/ro/docs/causal-relations" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "directly negatively regulates (process to process)" + }, { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002578" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004031", + "lbl" : "enables subfunction", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-25T23:20:13Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004032", + "lbl" : "acts upstream of or within, positive effect", + "type" : "PROPERTY", + "meta" : { + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:49:30Z" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of_or_within,_positive_effect" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004033", + "lbl" : "acts upstream of or within, negative effect", + "type" : "PROPERTY", + "meta" : { + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:49:51Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004034", + "lbl" : "acts upstream of, positive effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:53:14Z" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of,_positive_effect" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004035", + "lbl" : "acts upstream of, negative effect", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative" + }, + "subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_gp2term" ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-01-26T23:53:22Z" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "http://wiki.geneontology.org/index.php/Acts_upstream_of,_negative_effect" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004046", + "lbl" : "causally upstream of or within, negative effect", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004050", + "val" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-03-13T23:55:05Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0004047", + "lbl" : "causally upstream of or within, positive effect", + "type" : "PROPERTY", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/RO_0004049", + "val" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "https://orcid.org/0000-0002-6601-2165" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2018-03-13T23:55:19Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0011002", + "lbl" : "regulates activity of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-4639-4431" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0012011", + "lbl" : "indirectly causally upstream of", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "pg" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2022-09-26T06:07:17Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0012012", + "lbl" : "indirectly regulates", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "pg" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2022-09-26T06:08:01Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0017001", + "lbl" : "device utilizes material", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y." + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "utilizes" + } ], + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000112", + "val" : "A diagnostic testing device utilizes a specimen." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0001-9625-1899" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000117", + "val" : "https://orcid.org/0000-0003-2620-0345" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input." + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000232", + "val" : "See github ticket https://github.com/oborel/obo-relations/issues/497" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2021-11-08T12:00:00Z" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0019000", + "lbl" : "regulates characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.org/dc/terms/contributor", + "val" : "https://orcid.org/0000-0002-8688-6599" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0019001", + "lbl" : "positively regulates characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.org/dc/terms/contributor", + "val" : "https://orcid.org/0000-0002-8688-6599" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/RO_0019002", + "lbl" : "negatively regulates characteristic", + "type" : "PROPERTY", + "meta" : { + "definition" : { + "val" : "A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C." + }, + "basicPropertyValues" : [ { + "pred" : "http://purl.org/dc/terms/contributor", + "val" : "https://orcid.org/0000-0002-8688-6599" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000001", + "lbl" : "free-living nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely outside of a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:42:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000002", + "lbl" : "all stages Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "All C. elegans development stages, including embryo, larva and adult stage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000003", + "lbl" : "embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000004", + "lbl" : "proliferating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "proliferating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000005", + "lbl" : "blastula embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "blastula embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000006", + "lbl" : "1-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-cell embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "fertilized egg", + "xrefs" : [ "WB:dr" ] + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000007", + "lbl" : "2-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000008", + "lbl" : "4-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000009", + "lbl" : "28-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000010", + "lbl" : "gastrulating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "gastrulating embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000011", + "lbl" : "51-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000012", + "lbl" : "88-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000013", + "lbl" : "enclosing embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "enclosing embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000014", + "lbl" : "late cleavage stage embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late cleavage stage embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000015", + "lbl" : "elongating embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "elongating embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "mid embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000016", + "lbl" : "bean embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "bean embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000017", + "lbl" : "comma embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "comma embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000018", + "lbl" : "1.5-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1.5-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000019", + "lbl" : "2-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000020", + "lbl" : "3-fold embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-fold embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000021", + "lbl" : "fully-elongated embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "fully-elongated embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "morphogenetic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "pre-hatched embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000022", + "lbl" : "postembryonic Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000023", + "lbl" : "larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000024", + "lbl" : "L1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000025", + "lbl" : "L1-L2 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000026", + "lbl" : "L1-L2 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000027", + "lbl" : "L2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000028", + "lbl" : "L2-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000029", + "lbl" : "L2-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000030", + "lbl" : "L2d-dauer lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000031", + "lbl" : "L2d-dauer molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000032", + "lbl" : "dauer larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A third stage larva specialized for dispersal and long term survival.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "dauer larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000033", + "lbl" : "postdauer-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000034", + "lbl" : "postdauer-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000035", + "lbl" : "L3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000036", + "lbl" : "L3-L4 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000037", + "lbl" : "L3-L4 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000038", + "lbl" : "L4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000039", + "lbl" : "L4-adult lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000040", + "lbl" : "L4-adult molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4-adult molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000041", + "lbl" : "adult Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins when a C.elegans individual is fully-developed and has reached maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000042", + "lbl" : "L1-L2 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000043", + "lbl" : "L1-L2d molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000044", + "lbl" : "L1-L2d lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000045", + "lbl" : "L1-L2d ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1-L2d ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000046", + "lbl" : "L2d larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:0-87969-433-5" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000047", + "lbl" : "L2-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000048", + "lbl" : "L2d-dauer ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-dauer ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000049", + "lbl" : "L3-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000050", + "lbl" : "L4-adult ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000051", + "lbl" : "postdauer-L4 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postdauer-L4 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000052", + "lbl" : "post dauer L3 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet.", + "xrefs" : [ "PMID:27417559", "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL3" + }, { + "pred" : "hasExactSynonym", + "val" : "dauer exit" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000053", + "lbl" : "L2d-L3 molt Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 molt" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000054", + "lbl" : "L2d-L3 lethargus Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 lethargus" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000055", + "lbl" : "L2d-L3 ecdysis Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2d-L3 ecdysis" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000056", + "lbl" : "adult male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an male animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000057", + "lbl" : "adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage after an hermaphrodite animal is fully-developed and reaches maturity.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000058", + "lbl" : "pre-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "pre-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000059", + "lbl" : "parasitic nematode stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:44:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000060", + "lbl" : "reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000061", + "lbl" : "oocyte-laying stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "oocyte-laying stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000062", + "lbl" : "post-reproductive stage adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-reproductive stage adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000063", + "lbl" : "newly molted young adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 0-24 hours after L4-adult molt.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "newly molted young adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000064", + "lbl" : "1-day post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1-day post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000065", + "lbl" : "2-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000066", + "lbl" : "3-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000067", + "lbl" : "4-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000068", + "lbl" : "5-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000069", + "lbl" : "4-7 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4-7 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000070", + "lbl" : "7-10 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-10 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000071", + "lbl" : "8-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000072", + "lbl" : "12-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000073", + "lbl" : "L4 larva male Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch.", + "xrefs" : [ "WB:wjc" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4 larva male" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000074", + "lbl" : "11-15 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-22T14:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000075", + "lbl" : "worm life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage of a worm", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000076", + "lbl" : "Strongyloides life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Strongyloides developmental stage, including free-living and parasitic stages.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages Strongyloides" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:49:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000077", + "lbl" : "Brugia sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "sheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia immature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "immature microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000662" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000078", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000663" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000079", + "lbl" : "Brugia L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L1" + }, { + "pred" : "hasExactSynonym", + "val" : "L1 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000080", + "lbl" : "Brugia L2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L2" + }, { + "pred" : "hasExactSynonym", + "val" : "L2 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:30:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000081", + "lbl" : "Brugia L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3" + }, { + "pred" : "hasExactSynonym", + "val" : "L3 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000082", + "lbl" : "Brugia L4", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4" + }, { + "pred" : "hasExactSynonym", + "val" : "L4 larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:31:38Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000083", + "lbl" : "Brugia adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-05-30T09:32:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000084", + "lbl" : "14-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "E-cell has divided into Ea and Ep. Contains 14 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:15:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000085", + "lbl" : "24-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fourth cleavage of the AB lineage. Contains 24 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:23:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000086", + "lbl" : "44-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Fifth cleavage of the AB lineage. Contains 44 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:25:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000087", + "lbl" : "68-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Sixth cleavage of the AB lineage. Contains 68 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:26:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000088", + "lbl" : "86-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Seventh cleavage of the AB lineage. Contains 86 cells.", + "xrefs" : [ "WB:WBPaper00046121", "WB:dr" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-02T17:27:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000089", + "lbl" : "190-cells embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "P4 and M cells have finished migrating. Contains 190 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190-cells embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-15T13:19:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000090", + "lbl" : "96-cell embryo Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96-cell embryo" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2012-10-16T15:37:30Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000091", + "lbl" : "Brugia life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any Brugia developmental stage, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "all stages Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T03:18:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000092", + "lbl" : "Brugia embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:48:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000093", + "lbl" : "Brugia postembryonic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "postembryonic stage" + }, { + "pred" : "hasExactSynonym", + "val" : "postembryonic Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:50:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000094", + "lbl" : "Brugia early embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "early embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "early embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:55:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000095", + "lbl" : "Brugia middle embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Proliferates from 100 cells to Lima bean stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "middle embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "middle embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T04:59:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000096", + "lbl" : "Brugia late embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "From Lima bean to hatching.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "late embryo" + }, { + "pred" : "hasExactSynonym", + "val" : "late embryo Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:00:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000097", + "lbl" : "Brugia larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:12:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000098", + "lbl" : "Brugia L3i", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L3i" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia vector-derived L3" + }, { + "pred" : "hasExactSynonym", + "val" : "vector-derived L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "iL3" + }, { + "pred" : "hasRelatedSynonym", + "val" : "infective L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:23:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000099", + "lbl" : "Brugia post-infection L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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).", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post-infection L3" + }, { + "pred" : "hasExactSynonym", + "val" : "post-infection L3 Bma" + }, { + "pred" : "hasRelatedSynonym", + "val" : "piL3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:24:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000100", + "lbl" : "Brugia young adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "young adult" + }, { + "pred" : "hasExactSynonym", + "val" : "young adult Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-12T05:37:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000101", + "lbl" : "Nematode life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in a nematode, including embryo, larva and adult stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "all stages nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:13:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000102", + "lbl" : "nematode embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "embryo nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode egg stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000103", + "lbl" : "postembryonic nematode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developemental life stage in a nematode that occurs from egg hatching until death.", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:14:39Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000104", + "lbl" : "nematode adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The nematode life-stage that begins when the organism is fully-developed and has reached maturity.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L5" + }, { + "pred" : "hasExactSynonym", + "val" : "adult nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:18:53Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000105", + "lbl" : "nematode larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins after hatching and ends when the nematode becomes adult.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "larval stage" + }, { + "pred" : "hasExactSynonym", + "val" : "larva nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "nematode larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:19:27Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000106", + "lbl" : "L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The first stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:28Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000107", + "lbl" : "L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The second stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L2 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:20:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000108", + "lbl" : "L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The third stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L3 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:21:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000109", + "lbl" : "L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The fourth stage larva of nematodes.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L4 larva nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:22:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000110", + "lbl" : "sheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\".", + "xrefs" : [ "WB:WBPerson2987", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "sheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2013-11-25T06:23:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000111", + "lbl" : "16-18 days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16-18 days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000112", + "lbl" : "1 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "1 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000113", + "lbl" : "2 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "2 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000114", + "lbl" : "3 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "3 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000115", + "lbl" : "4 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "4 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000116", + "lbl" : "5 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "5 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000117", + "lbl" : "6 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000118", + "lbl" : "7 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000119", + "lbl" : "8 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000120", + "lbl" : "9 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000121", + "lbl" : "10 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000122", + "lbl" : "11 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000123", + "lbl" : "12 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000124", + "lbl" : "13 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000125", + "lbl" : "14 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000126", + "lbl" : "15 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000127", + "lbl" : "16 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "16 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000128", + "lbl" : "17 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "17 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000129", + "lbl" : "18 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "18 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000130", + "lbl" : "19 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "19 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000131", + "lbl" : "20 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000132", + "lbl" : "21 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "21 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000133", + "lbl" : "22 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "22 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000134", + "lbl" : "23 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "23 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000135", + "lbl" : "24 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "24 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000136", + "lbl" : "25 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "25 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000137", + "lbl" : "26 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "26 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000138", + "lbl" : "27 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "27 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000139", + "lbl" : "28 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "28 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000140", + "lbl" : "29 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "29 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000141", + "lbl" : "30 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "30 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000142", + "lbl" : "31 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "31 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000143", + "lbl" : "32 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "32 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000144", + "lbl" : "33 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "33 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000145", + "lbl" : "34 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "34 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000146", + "lbl" : "35 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "35 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000147", + "lbl" : "36 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "36 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000148", + "lbl" : "37 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "37 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000149", + "lbl" : "38 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "38 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000150", + "lbl" : "39 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "39 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000151", + "lbl" : "40 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "40 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000152", + "lbl" : "41 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "41 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000153", + "lbl" : "42 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "42 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000154", + "lbl" : "43 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "43 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000155", + "lbl" : "44 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "44 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000156", + "lbl" : "45 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "45 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000157", + "lbl" : "46 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "46 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000158", + "lbl" : "47 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "47 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000159", + "lbl" : "48 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "48 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000160", + "lbl" : "49 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "49 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000161", + "lbl" : "50 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "50 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000162", + "lbl" : "51 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "51 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000163", + "lbl" : "52 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "52 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000164", + "lbl" : "53 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "53 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000165", + "lbl" : "54 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "54 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000166", + "lbl" : "55 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "55 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000167", + "lbl" : "56 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "56 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000168", + "lbl" : "57 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "57 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000169", + "lbl" : "58 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "58 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000170", + "lbl" : "59 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "59 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000171", + "lbl" : "60 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "60 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000172", + "lbl" : "61 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "61 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000173", + "lbl" : "62 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "62 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000174", + "lbl" : "63 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "63 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000175", + "lbl" : "64 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "64 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000176", + "lbl" : "65 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "65 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000177", + "lbl" : "66 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "66 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000178", + "lbl" : "67 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "67 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000179", + "lbl" : "68 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "68 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000180", + "lbl" : "69 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "69 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000181", + "lbl" : "70 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "70 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000182", + "lbl" : "71 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "71 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000183", + "lbl" : "72 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "72 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000184", + "lbl" : "73 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "73 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000185", + "lbl" : "74 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "74 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000186", + "lbl" : "75 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "75 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000187", + "lbl" : "76 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "76 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000188", + "lbl" : "77 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "77 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000189", + "lbl" : "78 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "78 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000190", + "lbl" : "79 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "79 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000191", + "lbl" : "80 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "80 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000192", + "lbl" : "81 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "81 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000193", + "lbl" : "82 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "82 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000194", + "lbl" : "83 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "83 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000195", + "lbl" : "84 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "84 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000196", + "lbl" : "85 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "85 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000197", + "lbl" : "86 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "86 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000198", + "lbl" : "87 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "87 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000199", + "lbl" : "88 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "88 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000200", + "lbl" : "89 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "89 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000201", + "lbl" : "90 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "90 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000202", + "lbl" : "91 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "91 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000203", + "lbl" : "92 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "92 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000204", + "lbl" : "93 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "93 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000205", + "lbl" : "94 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "94 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000206", + "lbl" : "95 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "95 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000207", + "lbl" : "96 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "96 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000208", + "lbl" : "97 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "97 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000209", + "lbl" : "98 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "98 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000210", + "lbl" : "99 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "99 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000211", + "lbl" : "100 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "100 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000212", + "lbl" : "101 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "101 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000213", + "lbl" : "102 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "102 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000214", + "lbl" : "103 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "103 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000215", + "lbl" : "104 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "104 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000216", + "lbl" : "105 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "105 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000217", + "lbl" : "106 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "106 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000218", + "lbl" : "107 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "107 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000219", + "lbl" : "108 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "108 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000220", + "lbl" : "109 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "109 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000221", + "lbl" : "110 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "110 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000222", + "lbl" : "111 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "111 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000223", + "lbl" : "112 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "112 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000224", + "lbl" : "113 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "113 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000225", + "lbl" : "114 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "114 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000226", + "lbl" : "115 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "115 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000227", + "lbl" : "116 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "116 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000228", + "lbl" : "117 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "117 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000229", + "lbl" : "118 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "118 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000230", + "lbl" : "119 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "119 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000231", + "lbl" : "120 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "120 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000232", + "lbl" : "121 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "121 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000233", + "lbl" : "122 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "122 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000234", + "lbl" : "123 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "123 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000235", + "lbl" : "124 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "124 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000236", + "lbl" : "125 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "125 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000237", + "lbl" : "126 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "126 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000238", + "lbl" : "127 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "127 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000239", + "lbl" : "128 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "128 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000240", + "lbl" : "129 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "129 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000241", + "lbl" : "130 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "130 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000242", + "lbl" : "131 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "131 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000243", + "lbl" : "132 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "132 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000244", + "lbl" : "133 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "133 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000245", + "lbl" : "134 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "134 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000246", + "lbl" : "135 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "135 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000247", + "lbl" : "136 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "136 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000248", + "lbl" : "137 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "137 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000249", + "lbl" : "138 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "138 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000250", + "lbl" : "139 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "139 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000251", + "lbl" : "140 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "140 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000252", + "lbl" : "141 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "141 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000253", + "lbl" : "142 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "142 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000254", + "lbl" : "143 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "143 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000255", + "lbl" : "144 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "144 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000256", + "lbl" : "145 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "145 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000257", + "lbl" : "146 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "146 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000258", + "lbl" : "147 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "147 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000259", + "lbl" : "148 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "148 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000260", + "lbl" : "149 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "149 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000261", + "lbl" : "150 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "150 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000262", + "lbl" : "151 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "151 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000263", + "lbl" : "152 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "152 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000264", + "lbl" : "153 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "153 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000265", + "lbl" : "154 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "154 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000266", + "lbl" : "155 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "155 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000267", + "lbl" : "156 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "156 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000268", + "lbl" : "157 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "157 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000269", + "lbl" : "158 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "158 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000270", + "lbl" : "159 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "159 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000271", + "lbl" : "160 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "160 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000272", + "lbl" : "161 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "161 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000273", + "lbl" : "162 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "162 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000274", + "lbl" : "163 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "163 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000275", + "lbl" : "164 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "164 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000276", + "lbl" : "165 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "165 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000277", + "lbl" : "166 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "166 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000278", + "lbl" : "167 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "167 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000279", + "lbl" : "168 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "168 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000280", + "lbl" : "169 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "169 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000281", + "lbl" : "170 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "170 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000282", + "lbl" : "171 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "171 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000283", + "lbl" : "172 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "172 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000284", + "lbl" : "173 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "173 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000285", + "lbl" : "174 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "174 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000286", + "lbl" : "175 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "175 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000287", + "lbl" : "176 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "176 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000288", + "lbl" : "177 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "177 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000289", + "lbl" : "178 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "178 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000290", + "lbl" : "179 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "179 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000291", + "lbl" : "180 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "180 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000292", + "lbl" : "181 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "181 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000293", + "lbl" : "182 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "182 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000294", + "lbl" : "183 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "183 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000295", + "lbl" : "184 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "184 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000296", + "lbl" : "185 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "185 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000297", + "lbl" : "186 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "186 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000298", + "lbl" : "187 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "187 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000299", + "lbl" : "188 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "188 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000300", + "lbl" : "189 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "189 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000301", + "lbl" : "190 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "190 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000302", + "lbl" : "191 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "191 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000303", + "lbl" : "192 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "192 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000304", + "lbl" : "193 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "193 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000305", + "lbl" : "194 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "194 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000306", + "lbl" : "195 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "195 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000307", + "lbl" : "196 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "196 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000308", + "lbl" : "197 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "197 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000309", + "lbl" : "198 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "198 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000310", + "lbl" : "199 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "199 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000311", + "lbl" : "200 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "200 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000312", + "lbl" : "201 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "201 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000313", + "lbl" : "202 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "202 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000314", + "lbl" : "203 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "203 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000315", + "lbl" : "204 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "204 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000316", + "lbl" : "205 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "205 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000317", + "lbl" : "206 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "206 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000318", + "lbl" : "207 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "207 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000319", + "lbl" : "208 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "208 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000320", + "lbl" : "209 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "209 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000321", + "lbl" : "210 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "210 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000322", + "lbl" : "211 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "211 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000323", + "lbl" : "212 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "212 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000324", + "lbl" : "213 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "213 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000325", + "lbl" : "214 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "214 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000326", + "lbl" : "215 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "215 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000327", + "lbl" : "216 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "216 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000328", + "lbl" : "217 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "217 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000329", + "lbl" : "218 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "218 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000330", + "lbl" : "219 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "219 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000331", + "lbl" : "220 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "220 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000332", + "lbl" : "221 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "221 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000333", + "lbl" : "222 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "222 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000334", + "lbl" : "223 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "223 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000335", + "lbl" : "224 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "224 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000336", + "lbl" : "225 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "225 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000337", + "lbl" : "226 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "226 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000338", + "lbl" : "227 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "227 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000339", + "lbl" : "228 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "228 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000340", + "lbl" : "229 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "229 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000341", + "lbl" : "230 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "230 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000342", + "lbl" : "231 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "231 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000343", + "lbl" : "232 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "232 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000344", + "lbl" : "233 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "233 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000345", + "lbl" : "234 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "234 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000346", + "lbl" : "235 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "235 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000347", + "lbl" : "236 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "236 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000348", + "lbl" : "237 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "237 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000349", + "lbl" : "238 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "238 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000350", + "lbl" : "239 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "239 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000351", + "lbl" : "240 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "240 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000352", + "lbl" : "241 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "241 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000353", + "lbl" : "242 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "242 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000354", + "lbl" : "243 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "243 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000355", + "lbl" : "244 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "244 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000356", + "lbl" : "245 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "245 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000357", + "lbl" : "246 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "246 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000358", + "lbl" : "247 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "247 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000359", + "lbl" : "248 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "248 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000360", + "lbl" : "249 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "249 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000361", + "lbl" : "250 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "250 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000362", + "lbl" : "251 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "251 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000363", + "lbl" : "252 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "252 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000364", + "lbl" : "253 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "253 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000365", + "lbl" : "254 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "254 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000366", + "lbl" : "255 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "255 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000367", + "lbl" : "256 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "256 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000368", + "lbl" : "257 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "257 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000369", + "lbl" : "258 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "258 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000370", + "lbl" : "259 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "259 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000371", + "lbl" : "260 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "260 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000372", + "lbl" : "261 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "261 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000373", + "lbl" : "262 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "262 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000374", + "lbl" : "263 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "263 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000375", + "lbl" : "264 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "264 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000376", + "lbl" : "265 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "265 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000377", + "lbl" : "266 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "266 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000378", + "lbl" : "267 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "267 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000379", + "lbl" : "268 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "268 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000380", + "lbl" : "269 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "269 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000381", + "lbl" : "270 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "270 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000382", + "lbl" : "271 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "271 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000383", + "lbl" : "272 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "272 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000384", + "lbl" : "273 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "273 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000385", + "lbl" : "274 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "274 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000386", + "lbl" : "275 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "275 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000387", + "lbl" : "276 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "276 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000388", + "lbl" : "277 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "277 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000389", + "lbl" : "278 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "278 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000390", + "lbl" : "279 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "279 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000391", + "lbl" : "280 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "280 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000392", + "lbl" : "281 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "281 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000393", + "lbl" : "282 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "282 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000394", + "lbl" : "283 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "283 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000395", + "lbl" : "284 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "284 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000396", + "lbl" : "285 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "285 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000397", + "lbl" : "286 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "286 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000398", + "lbl" : "287 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "287 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000399", + "lbl" : "288 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "288 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000400", + "lbl" : "289 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "289 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000401", + "lbl" : "290 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "290 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000402", + "lbl" : "291 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "291 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000403", + "lbl" : "292 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "292 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000404", + "lbl" : "293 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "293 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000405", + "lbl" : "294 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "294 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000406", + "lbl" : "295 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "295 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000407", + "lbl" : "296 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "296 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000408", + "lbl" : "297 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "297 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000409", + "lbl" : "298 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "298 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000410", + "lbl" : "299 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "299 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000411", + "lbl" : "300 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "300 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000412", + "lbl" : "301 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "301 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000413", + "lbl" : "302 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "302 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000414", + "lbl" : "303 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "303 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000415", + "lbl" : "304 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "304 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000416", + "lbl" : "305 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "305 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000417", + "lbl" : "306 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "306 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000418", + "lbl" : "307 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "307 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000419", + "lbl" : "308 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "308 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000420", + "lbl" : "309 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "309 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000421", + "lbl" : "310 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "310 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000422", + "lbl" : "311 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "311 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000423", + "lbl" : "312 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "312 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000424", + "lbl" : "313 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "313 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000425", + "lbl" : "314 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "314 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000426", + "lbl" : "315 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "315 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000427", + "lbl" : "316 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "316 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000428", + "lbl" : "317 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "317 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000429", + "lbl" : "318 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "318 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000430", + "lbl" : "319 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "319 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000431", + "lbl" : "320 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "320 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000432", + "lbl" : "321 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "321 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000433", + "lbl" : "322 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "322 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000434", + "lbl" : "323 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "323 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000435", + "lbl" : "324 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "324 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000436", + "lbl" : "325 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "325 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000437", + "lbl" : "326 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "326 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000438", + "lbl" : "327 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "327 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000439", + "lbl" : "328 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "328 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000440", + "lbl" : "329 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "329 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000441", + "lbl" : "330 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "330 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000442", + "lbl" : "331 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "331 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000443", + "lbl" : "332 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "332 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000444", + "lbl" : "333 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "333 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000445", + "lbl" : "334 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "334 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000446", + "lbl" : "335 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "335 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000447", + "lbl" : "336 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "336 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000448", + "lbl" : "337 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "337 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000449", + "lbl" : "338 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "338 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000450", + "lbl" : "339 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "339 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000451", + "lbl" : "340 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "340 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000452", + "lbl" : "341 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "341 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000453", + "lbl" : "342 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "342 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000454", + "lbl" : "343 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "343 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000455", + "lbl" : "344 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "344 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000456", + "lbl" : "345 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "345 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000457", + "lbl" : "346 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "346 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000458", + "lbl" : "347 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "347 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000459", + "lbl" : "348 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "348 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000460", + "lbl" : "349 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "349 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000461", + "lbl" : "350 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "350 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000462", + "lbl" : "351 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "351 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000463", + "lbl" : "352 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "352 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000464", + "lbl" : "353 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "353 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000465", + "lbl" : "354 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "354 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000466", + "lbl" : "355 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "355 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000467", + "lbl" : "356 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "356 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000468", + "lbl" : "357 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "357 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000469", + "lbl" : "358 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "358 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000470", + "lbl" : "359 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "359 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000471", + "lbl" : "360 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "360 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000472", + "lbl" : "361 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "361 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000473", + "lbl" : "362 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "362 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000474", + "lbl" : "363 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "363 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000475", + "lbl" : "364 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "364 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000476", + "lbl" : "365 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "365 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000477", + "lbl" : "366 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "366 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000478", + "lbl" : "367 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "367 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000479", + "lbl" : "368 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "368 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000480", + "lbl" : "369 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "369 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000481", + "lbl" : "370 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "370 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000482", + "lbl" : "371 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "371 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000483", + "lbl" : "372 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "372 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000484", + "lbl" : "373 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "373 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000485", + "lbl" : "374 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "374 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000486", + "lbl" : "375 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "375 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000487", + "lbl" : "376 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "376 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000488", + "lbl" : "377 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "377 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000489", + "lbl" : "378 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "378 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000490", + "lbl" : "379 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "379 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000491", + "lbl" : "380 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "380 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000492", + "lbl" : "381 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "381 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000493", + "lbl" : "382 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "382 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000494", + "lbl" : "383 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "383 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000495", + "lbl" : "384 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "384 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000496", + "lbl" : "385 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "385 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000497", + "lbl" : "386 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "386 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000498", + "lbl" : "387 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "387 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000499", + "lbl" : "388 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "388 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000500", + "lbl" : "389 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "389 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000501", + "lbl" : "390 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "390 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000502", + "lbl" : "391 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "391 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000503", + "lbl" : "392 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "392 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000504", + "lbl" : "393 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "393 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000505", + "lbl" : "394 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "394 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000506", + "lbl" : "395 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "395 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000507", + "lbl" : "396 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "396 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000508", + "lbl" : "397 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "397 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000509", + "lbl" : "398 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "398 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000510", + "lbl" : "399 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "399 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000511", + "lbl" : "400 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "400 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000512", + "lbl" : "401 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "401 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000513", + "lbl" : "402 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "402 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000514", + "lbl" : "403 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "403 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000515", + "lbl" : "404 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "404 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000516", + "lbl" : "405 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "405 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000517", + "lbl" : "406 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "406 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000518", + "lbl" : "407 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "407 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000519", + "lbl" : "408 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "408 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000520", + "lbl" : "409 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "409 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000521", + "lbl" : "410 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "410 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000522", + "lbl" : "411 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "411 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000523", + "lbl" : "412 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "412 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000524", + "lbl" : "413 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "413 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000525", + "lbl" : "414 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "414 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000526", + "lbl" : "415 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "415 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000527", + "lbl" : "416 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "416 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000528", + "lbl" : "417 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "417 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000529", + "lbl" : "418 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "418 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000530", + "lbl" : "419 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "419 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000531", + "lbl" : "420 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "420 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000532", + "lbl" : "421 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "421 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000533", + "lbl" : "422 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "422 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000534", + "lbl" : "423 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "423 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000535", + "lbl" : "424 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "424 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000536", + "lbl" : "425 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "425 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000537", + "lbl" : "426 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "426 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000538", + "lbl" : "427 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "427 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000539", + "lbl" : "428 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "428 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000540", + "lbl" : "429 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "429 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000541", + "lbl" : "430 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "430 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000542", + "lbl" : "431 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "431 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000543", + "lbl" : "432 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "432 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000544", + "lbl" : "433 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "433 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000545", + "lbl" : "434 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "434 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000546", + "lbl" : "435 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "435 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000547", + "lbl" : "436 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "436 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000548", + "lbl" : "437 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "437 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000549", + "lbl" : "438 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "438 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000550", + "lbl" : "439 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "439 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000551", + "lbl" : "440 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "440 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000552", + "lbl" : "441 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "441 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000553", + "lbl" : "442 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "442 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000554", + "lbl" : "443 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "443 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000555", + "lbl" : "444 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "444 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000556", + "lbl" : "445 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "445 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000557", + "lbl" : "446 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "446 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000558", + "lbl" : "447 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "447 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000559", + "lbl" : "448 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "448 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000560", + "lbl" : "449 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "449 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000561", + "lbl" : "450 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "450 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000562", + "lbl" : "451 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "451 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000563", + "lbl" : "452 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "452 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000564", + "lbl" : "453 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "453 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000565", + "lbl" : "454 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "454 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000566", + "lbl" : "455 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "455 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000567", + "lbl" : "456 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "456 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000568", + "lbl" : "457 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "457 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000569", + "lbl" : "458 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "458 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000570", + "lbl" : "459 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "459 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000571", + "lbl" : "460 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "460 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000572", + "lbl" : "461 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "461 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000573", + "lbl" : "462 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "462 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000574", + "lbl" : "463 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "463 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000575", + "lbl" : "464 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "464 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000576", + "lbl" : "465 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "465 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000577", + "lbl" : "466 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "466 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000578", + "lbl" : "467 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "467 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000579", + "lbl" : "468 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "468 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000580", + "lbl" : "469 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "469 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000581", + "lbl" : "470 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "470 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000582", + "lbl" : "471 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "471 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000583", + "lbl" : "472 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "472 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000584", + "lbl" : "473 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "473 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000585", + "lbl" : "474 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "474 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000586", + "lbl" : "475 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "475 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000587", + "lbl" : "476 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "476 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000588", + "lbl" : "477 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "477 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000589", + "lbl" : "478 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "478 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000590", + "lbl" : "479 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "479 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000591", + "lbl" : "480 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "480 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000592", + "lbl" : "481 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "481 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000593", + "lbl" : "482 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "482 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000594", + "lbl" : "483 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "483 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000595", + "lbl" : "484 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "484 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000596", + "lbl" : "485 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "485 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000597", + "lbl" : "486 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "486 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000598", + "lbl" : "487 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "487 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000599", + "lbl" : "488 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "488 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000600", + "lbl" : "489 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "489 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000601", + "lbl" : "490 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "490 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000602", + "lbl" : "491 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "491 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000603", + "lbl" : "492 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "492 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000604", + "lbl" : "493 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "493 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000605", + "lbl" : "494 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "494 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000606", + "lbl" : "495 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "495 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000607", + "lbl" : "496 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "496 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000608", + "lbl" : "497 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "497 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000609", + "lbl" : "498 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "498 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000610", + "lbl" : "499 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "499 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000611", + "lbl" : "500 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "500 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000612", + "lbl" : "501 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "501 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000613", + "lbl" : "502 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "502 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000614", + "lbl" : "503 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "503 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000615", + "lbl" : "504 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "504 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000616", + "lbl" : "505 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "505 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000617", + "lbl" : "506 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "506 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000618", + "lbl" : "507 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "507 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000619", + "lbl" : "508 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "508 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000620", + "lbl" : "509 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "509 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000621", + "lbl" : "510 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "510 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000622", + "lbl" : "511 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "511 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000623", + "lbl" : "512 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "512 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000624", + "lbl" : "513 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "513 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000625", + "lbl" : "514 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "514 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000626", + "lbl" : "515 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "515 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000627", + "lbl" : "516 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "516 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000628", + "lbl" : "517 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "517 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000629", + "lbl" : "518 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "518 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000630", + "lbl" : "519 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "519 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000631", + "lbl" : "520 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "520 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000632", + "lbl" : "521 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "521 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000633", + "lbl" : "522 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "522 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000634", + "lbl" : "523 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "523 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000635", + "lbl" : "524 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "524 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000636", + "lbl" : "525 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "525 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000637", + "lbl" : "526 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "526 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000638", + "lbl" : "527 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "527 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000639", + "lbl" : "528 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "528 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000640", + "lbl" : "529 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "529 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000641", + "lbl" : "530 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "530 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000642", + "lbl" : "531 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "531 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000643", + "lbl" : "532 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "532 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000644", + "lbl" : "533 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "533 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000645", + "lbl" : "534 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "534 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000646", + "lbl" : "535 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "535 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000647", + "lbl" : "536 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "536 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000648", + "lbl" : "537 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "537 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000649", + "lbl" : "538 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "538 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000650", + "lbl" : "539 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "539 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000651", + "lbl" : "540 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "540 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000652", + "lbl" : "541 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "541 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000653", + "lbl" : "542 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "542 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000654", + "lbl" : "543 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "543 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000655", + "lbl" : "544 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "544 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000656", + "lbl" : "545 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "545 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000657", + "lbl" : "546 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "546 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000658", + "lbl" : "547 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "547 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000659", + "lbl" : "548 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "548 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000660", + "lbl" : "549 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "549 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000661", + "lbl" : "550 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "550 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-04-25T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000662", + "type" : "CLASS", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000231", + "val" : "http://purl.obolibrary.org/obo/IAO_0000227" + }, { + "pred" : "http://purl.obolibrary.org/obo/IAO_0100001", + "val" : "http://purl.obolibrary.org/obo/WBls_0000077" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000663", + "lbl" : "Brugia unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unsheathed microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia mature microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "mature microfilaria Bma" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-10T09:29:36Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "val" : "WBls:0000078" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000664", + "lbl" : "microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:jl" ] + }, + "comments" : [ "Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:23:44Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000665", + "lbl" : "Brugia microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage.", + "xrefs" : [ "WB:dr", "WB:mb" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "microfilaria" + }, { + "pred" : "hasExactSynonym", + "val" : "Brugia MF" + }, { + "pred" : "hasExactSynonym", + "val" : "microfilaria Bma" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:25:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000666", + "lbl" : "unsheathed microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilaria nematode" + }, { + "pred" : "hasExactSynonym", + "val" : "unsheathed microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:50:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000667", + "lbl" : "nodular microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found in nodules and ulcers.", + "xrefs" : [ "PMID:1796232", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae" + }, { + "pred" : "hasExactSynonym", + "val" : "nodular microfilariae nematode" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000668", + "lbl" : "skin microfilaria", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Microfilaria larvae found subcutaneously", + "xrefs" : [ "PMID:20772951", "PMID:7797912", "WB:WBPerson4055" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "skin microfilariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-25T09:52:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000669", + "lbl" : "unfertilized egg Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "unfertilized egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2014-11-26T11:49:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000670", + "lbl" : "6-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "6-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000671", + "lbl" : "7-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "7-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000672", + "lbl" : "8-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "8-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000673", + "lbl" : "9-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "9-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000674", + "lbl" : "10-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "10-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000675", + "lbl" : "15-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "15-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000676", + "lbl" : "20-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "20-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000677", + "lbl" : "Strongyloides free-living stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:51:48Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000678", + "lbl" : "Strongyloides parasitic stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T10:52:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000679", + "lbl" : "nematode infective stage larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larval stage that is capable of infecting a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Host organism here refers to the main host organism rather than intermediate hosts." ], + "synonyms" : [ { + "pred" : "hasNarrowSynonym", + "val" : "infective larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:21:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000680", + "lbl" : "Strongyloides infective L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "infective L3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides iL3" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides infective stage larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:27:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000681", + "lbl" : "Strongyloides parasitic female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "parasitic female" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:36:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000682", + "lbl" : "Strongyloides free-living adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living adult" + }, { + "pred" : "hasExactSynonym", + "val" : "Strongyloides free-living L5" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-03-19T11:48:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000683", + "lbl" : "L4.0 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.0 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:03:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000684", + "lbl" : "L4.1 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.1 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:06:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000685", + "lbl" : "L4.2 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.2 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:09:03Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000686", + "lbl" : "L4.3 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.3 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:10:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000687", + "lbl" : "L4.4 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.4 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:11:12Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000688", + "lbl" : "L4.5 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.5 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:13:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000689", + "lbl" : "L4.6 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.6 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:15:18Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000690", + "lbl" : "L4.7 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.7 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:16:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000691", + "lbl" : "L4.8 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.8 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:18:02Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000692", + "lbl" : "L4.9 larva Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:WBPaper00046933", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "L4.9 larva" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-06-03T09:20:37Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000693", + "lbl" : "560 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "560 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T09:27:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000694", + "lbl" : "570 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "570 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T10:07:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000695", + "lbl" : "640 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "640 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:08:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000696", + "lbl" : "650 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "650 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:11:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000697", + "lbl" : "660 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "660 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:13:05Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000698", + "lbl" : "720 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "720 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:16:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000699", + "lbl" : "770 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "770 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:18:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000700", + "lbl" : "780 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "780 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:23:34Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000701", + "lbl" : "820 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "820 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:25:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000702", + "lbl" : "830 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "830 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:28:41Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000703", + "lbl" : "850 min post first-cleavage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree.", + "xrefs" : [ "WB:WBPaper00000653" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "850 min post first-cleavage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-10-06T11:30:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000704", + "lbl" : "Platyhelminthes life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage in Platyhelminthes (flatworms).", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "Platyhelminthes developmental stage" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth developmental stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:14:50Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000705", + "lbl" : "Platyhelminthes egg", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "egg" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth egg" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:17:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000706", + "lbl" : "miracidium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:35:26Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000707", + "lbl" : "sporocyst", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:42:15Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000708", + "lbl" : "cercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "cercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-16T11:44:51Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000709", + "lbl" : "schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "somule" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:46:43Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000710", + "lbl" : "Platyhelminthes adult", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "adult" + }, { + "pred" : "hasExactSynonym", + "val" : "platyhelminth adult" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T07:51:21Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000711", + "lbl" : "Digenean life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A developmental stage of a Digenean (fluke).", + "xrefs" : [ "WB:jl" ] + }, + "comments" : [ "Digeneans include the Schistosomatidae (blood flukes)." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "fluke life stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:11:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000712", + "lbl" : "Cestoda life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a Cestode (tapeworm).", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T12:18:32Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000713", + "lbl" : "oncosphere", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasRelatedSynonym", + "val" : "hexcanth" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T13:42:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000714", + "lbl" : "hydatid cyst stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "hydatid cyst" + }, { + "pred" : "hasExactSynonym", + "val" : "metacestode vesicle" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:27:42Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000715", + "lbl" : "protoscolex stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:12462989", "WB:jl" ] + }, + "comments" : [ "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." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "protoscolex" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T14:40:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000716", + "lbl" : "metacestode", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "ISBN:070202788X", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacestode stage" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-17T15:02:35Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000717", + "lbl" : "cysticercoid stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-03-18T11:15:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000718", + "lbl" : "newly excysted juveniles", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "NEJ" + }, { + "pred" : "hasExactSynonym", + "val" : "newly emerged juveniles" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:02:59Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000719", + "lbl" : "juvenile fluke", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T12:56:49Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000720", + "lbl" : "metacercarium", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:25887684", "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "metacercariae" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T13:01:06Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000721", + "lbl" : "obsolete nematode adult intestinal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult intestinal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:03:22Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000722", + "lbl" : "obsolete nematode adult lumenal stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:19079187", "WB:jl" ] + }, + "comments" : [ "This term was made obsolete because this is an anotomical part and not a life-stage." ], + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "nematode adult lumenal phase" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-04-27T17:13:57Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000723", + "lbl" : "Onchocerca embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:22:55Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000724", + "lbl" : "3 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "3 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000017" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:54:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000725", + "lbl" : "24 hr schistosomulum", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "24 hr somule" + } ], + "xrefs" : [ { + "val" : "OPL:0000172" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-08-16T08:56:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000726", + "lbl" : "Onchocerca post-embryonic life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Onchocerca post-embryonic life stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:23:56Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000727", + "lbl" : "Onchocerca microfilaria (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:24:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000728", + "lbl" : "Onchocerca microfilaria (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:28:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000729", + "lbl" : "Strongyloides free living adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:28:29Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000730", + "lbl" : "Onchocerca L1 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L1 larvae that develop from the microfilariae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:35:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000731", + "lbl" : "Onchocerca L2 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L2 larvae that develops from the L1 larvae in the arthropod vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:40:31Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000732", + "lbl" : "Onchocerca L3 larva (vector stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:45:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000733", + "lbl" : "Onchocerca L3 larva (mammalian stage)", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:48:52Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000734", + "lbl" : "Onchocerca L3 larva in vitro cultured D1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 1 day.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:50:17Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000735", + "lbl" : "Onchocerca L3 larva in vitro cultured D2", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 2 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:51:09Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000736", + "lbl" : "Onchocerca L3 larva in vitro cultured D3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L3 larvae isolated from the insect vector and cultured in vitro for 3 days.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:53:33Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000737", + "lbl" : "Onchocerca L4 larva", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "L4 larvae that develop from L3 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:59:07Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000738", + "lbl" : "Onchocerca L4 larva in vitro cultured", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Larvae isolated from the insect vector and cultured in vitro to the L4 stage.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:01:46Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000739", + "lbl" : "Onchocerca adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:02:24Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000740", + "lbl" : "Onchocerca adult female", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult female that has developed from L4 larvae in the mammalian host.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T11:03:10Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000741", + "lbl" : "Onchocerca life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Any developmental stage of a nematode of the Onchocerca genus.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-06-09T10:18:45Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000742", + "lbl" : "Strongyloides free living adult male", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Adult male Strongyloides living entirely outside of a host or vector organism.", + "xrefs" : [ "WB:fr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "fr7" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-07-28T14:34:19Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000793", + "lbl" : "Strongyloides post free-living L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post free-living L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:38:04Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000794", + "lbl" : "Strongyloides post parasitic L1", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L1" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:39:14Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000795", + "lbl" : "Strongyloides post parasitic L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "post parasitic L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:55:54Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000796", + "lbl" : "Strongyloides post free-living L3", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle.", + "xrefs" : [ "WB:jl" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "free-living L3" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "jl16" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2015-11-25T11:57:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000797", + "lbl" : "11-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "11-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:23Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000798", + "lbl" : "12-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "12-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:13:47Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000799", + "lbl" : "13-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "13-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:11Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000800", + "lbl" : "14-days post-L4 adult hermaphrodite Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage.", + "xrefs" : [ "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasBroadSynonym", + "val" : "14-days post-L4 adult hermaphrodite" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2016-10-19T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000801", + "lbl" : "newly hatched L1 larval stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells.", + "xrefs" : [ "PMC:4492366", "WA:Wormatlas", "WB:dr" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:14:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000802", + "lbl" : "L1 arrest Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest.", + "xrefs" : [ "PMC:3697962", "WB:dr" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "L1 diapause" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#created_by", + "val" : "danielaraciti" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date", + "val" : "2017-11-14T10:15:40Z" + }, { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000803", + "lbl" : "C. elegans life stage occurring during embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000804", + "lbl" : "C. elegans life stage occurring post embryogenesis", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs after embryogenesis", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000805", + "lbl" : "C. elegans life stage occurring during elongating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000806", + "lbl" : "C. elegans life stage occurring during 1.5-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 1.5-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000807", + "lbl" : "C. elegans life stage occurring during 2-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 2-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000808", + "lbl" : "C. elegans life stage occurring during 3-fold embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the 3-fold embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000809", + "lbl" : "C. elegans life stage occurring during bean embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the bean embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000810", + "lbl" : "C. elegans life stage occurring during comma embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the comma embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000811", + "lbl" : "C. elegans life stage occurring during fully-elongated embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the fully-elongating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000812", + "lbl" : "C. elegans life stage occurring during proliferating embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the proliferating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000813", + "lbl" : "C. elegans life stage occurring during blastula embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the blastula embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000814", + "lbl" : "C. elegans life stage occurring during gastrulation", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the gastrulating embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000815", + "lbl" : "C. elegans life stage occurring during enclosing embryo", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the enclosing embryo life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000816", + "lbl" : "C. elegans life stage occurring during adulthood", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the adult life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000817", + "lbl" : "C. elegans life stage occurring during larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000818", + "lbl" : "C. elegans life stage occurring during L1 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L1 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000819", + "lbl" : "C. elegans life stage occurring during L2 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L2 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000820", + "lbl" : "C. elegans life stage occurring during L3 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L3 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000821", + "lbl" : "C. elegans life stage occurring during L4 larval stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage that occurs during the L4 larval life stage", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000822", + "lbl" : "C. elegans life stage by minutes post first cleavage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans life stage classified by the number of minutes post first embryonic cleavage.", + "xrefs" : [ "WB:WBPaper00000653", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000823", + "lbl" : "C. elegans life stage by number of cells", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage classified by the number of cells in the organism.", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000824", + "lbl" : "C. elegans life stage occurring during larval molt", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "C. elegans life stage that occurs during a larval molt", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000825", + "lbl" : "C. elegans life stage", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A life stage of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000826", + "lbl" : "obsolete set of worm life stages", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans", + "xrefs" : [ "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ], + "deprecated" : true + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000827", + "lbl" : "post dauer stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "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.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000828", + "lbl" : "post dauer L4 stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "synonyms" : [ { + "pred" : "hasExactSynonym", + "val" : "PDL4" + } ], + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "val" : "worm_development" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "val" : "\"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).\"" + } ] + } + }, { + "id" : "http://purl.obolibrary.org/obo/WBls_0000829", + "lbl" : "post dauer adult stage Ce", + "type" : "CLASS", + "meta" : { + "definition" : { + "val" : "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause.", + "xrefs" : [ "PMID:27417559", "WB:WBPerson2987" ] + }, + "basicPropertyValues" : [ { + "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "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" + }, { + "id" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy", + "meta" : { + "basicPropertyValues" : [ { + "pred" : "http://purl.obolibrary.org/obo/IAO_0000589", + "val" : "is defined by" + } ] + } + } ], + "edges" : [ { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000004", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000015", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000016", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000017", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000019", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000020", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000034", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000016" + }, { + "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/CARO_0000000", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0016301", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/GO_0003674" + }, { + "sub" : "http://purl.obolibrary.org/obo/PATO_0000001", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000001", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000002", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", + "pred" : "is_a", + "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_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000088" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000014" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000022", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000819" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000031", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000034", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000820" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000027" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000035" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000032" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000040", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000026" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000045", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000043" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000046", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000029" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000040" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000824" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000055", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000056", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000057", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000059", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000064" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000065" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000066" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000067" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000071" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000073", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000070" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000076", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000077", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000663" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000080", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000079" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000081", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000080" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000109" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000082", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000823" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000012" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000091", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000092", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000093", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000094", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", + "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" : "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000098", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000091" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000093" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000082" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000101", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000104", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000105", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000109", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000110", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000675" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "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" : "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000133" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000013" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000017" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000018" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "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_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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000660" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000665" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000663", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000077" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000664" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000110" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000667", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000668", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000666" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000669", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000068" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000670" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000671" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000672" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000673" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000800" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000111" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000677", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000059" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000678", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000076" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000679", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000108" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000680", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000679" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000681", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000104" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000682", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000683" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000684" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000685" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000686" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000687" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000688" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000689" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000690" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000038" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000020" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000702" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000704", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000075" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000705", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000706", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000707", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000710", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000711", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000712", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000704" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000713", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000714", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000715", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000716", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000712" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000717", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000716" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000718", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000719", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000720", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000723", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000741" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000724", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000709" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000725", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000724" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000728", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000727" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000733", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000732" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000734", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000735", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000734" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000736", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000737", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000733" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000726" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000740", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000737" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000741", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000742", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000682" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000793", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000794", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000678" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000795", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000677" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000796", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000680" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000674" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000797" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000798" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000799" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000024" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000021" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000801" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000803", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000804", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000805", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000806", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000807", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000808", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000809", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000810", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000811", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000812", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000813", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000814", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000815", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000816", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000817", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000818", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000819", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000820", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000821", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000822", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000823", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000824", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000825", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000001" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000827", + "pred" : "is_a", + "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", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000828", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000829", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000041" + }, { + "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/BFO_0000050", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002131" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000051", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002131" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000062", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002086" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000063", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002222" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000052", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002314" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000079", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000080", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000081", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000085", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000086", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000087", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000091", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000092", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000052" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002013", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002017" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002013", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002014", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002013" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002014", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002335" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002015", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002013" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002015", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002336" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002017", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002018" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002018", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002180" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002022", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002023", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002022" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002024", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002022" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002025", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002017" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002086", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002222" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002087", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000062" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002090", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000063" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002131", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002323" + }, { + "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_0002258" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002203", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002286" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002203", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002387" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002203", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002388" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002211", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002212", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002212", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002305" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002213", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002213", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002304" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002215", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002216" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002216", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002216", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002233", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002254", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002258" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002255", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002286" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002255", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002385" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002258", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002324" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002263", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002264", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002286", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002384" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002304", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002304", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004047" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002305", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002305", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004046" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002314", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002502" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002327", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002215" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002329", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002331", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000056" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002331", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002431" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002333", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002333", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002334", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002427" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002335", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002336", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002352", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000056" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002352", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002384", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002324" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002385", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002384" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002387", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002384" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002388", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002387" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002404", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000062" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002404", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002427" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002405", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002087" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002405", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002404" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002407", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002213" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002407", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0012012" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002409", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002212" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002409", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0012012" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002411", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000063" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002411", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002412", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002090" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002412", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002418", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002501" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002427", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002501" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002428", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002428", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002431" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002429", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002428" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002430", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002428" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002431", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002431", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002431", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002436", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002434" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002447", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002436" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002448", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002436" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002448", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0011002" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002449", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002448" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002450", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002448" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002481", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002564" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002500", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002595" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002501", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002506", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002559", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002506" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002563", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002464" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002564", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002563" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002566", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002506" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002578", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002578", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002412" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002584", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002584", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002595" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002595", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002596", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002500" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002597", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002596" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002598", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002596" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002608", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002629", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002213" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002629", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002578" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002630", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002212" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002630", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002578" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004031", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002328" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004032", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004033", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002264" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004034", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004034", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004032" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004035", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002263" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004035", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0004033" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004046", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0004047", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002418" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0011002", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002566" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0012011", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0012012", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002211" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0012012", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0012011" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0019000", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002410" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0019001", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0019000" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0019002", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0019000" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000050", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000051" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000062", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000063" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000052", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000056", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000057" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000079", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000085" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000080", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000086" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000081", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000087" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0000091", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002022", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002578" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002023", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002630" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002024", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002629" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002087", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002090" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002202", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002203" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002211", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002334" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002212", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002335" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002213", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002336" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002233", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002352" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002254", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002255" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002258", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002286" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002327", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002333" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002404", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002411" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002405", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002412" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002418", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002427" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002500", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002608" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002559", + "pred" : "inverseOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002566" + } ], + "domainRangeAxioms" : [ { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000050", + "allValuesFromEdges" : [ { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000002", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000002" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000003", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "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_0000017", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000017" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000019", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000019" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000020", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + } ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000063", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000056", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000057", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000079", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000034" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000085", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000034" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000087", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000023" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000091", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000016" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002018", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002202", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002211", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002215", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000004" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002222", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002233", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002254", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002258", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002334", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002384", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/CARO_0000000" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002434", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002448", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002449", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002450", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002501", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002506", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002566", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002595", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0011002", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000040" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019000", + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000015" ], + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/PATO_0000001" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000053", + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000020" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000086", + "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000019" ] + } ], + "propertyChainAxioms" : [ { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000062" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000063", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/BFO_0000063" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002329", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000050", "http://purl.obolibrary.org/obo/RO_0002215" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0000057", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0000057" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0002131" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002254", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0002202" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002584", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/BFO_0000051", "http://purl.obolibrary.org/obo/RO_0002215" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002314", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0000052", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002131", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002131", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002255", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002203", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002211", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0002025" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019000", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0019000" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002213", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002212", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019002", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002212", "http://purl.obolibrary.org/obo/RO_0019001" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019001", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002213", "http://purl.obolibrary.org/obo/RO_0019001" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0019002", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002213", "http://purl.obolibrary.org/obo/RO_0019002" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002216", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002596", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002211" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002597", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002598", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002213" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0017001", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002215", "http://purl.obolibrary.org/obo/RO_0002233" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002314", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002314", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002331", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002327", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/BFO_0000051" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004031", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/BFO_0000051" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002327", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002017" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002428", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002211" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002448", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002430", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002429", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002213" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004034", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002304" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004035", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002305" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002263", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002411" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002566", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002411", "http://purl.obolibrary.org/obo/RO_0002233" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002566", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002411", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002264", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002418" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002450", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002629", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002449", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0002630", "http://purl.obolibrary.org/obo/RO_0002333" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004033", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0004046" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0004032", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002327", "http://purl.obolibrary.org/obo/RO_0004047" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002331", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/BFO_0000050" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002428", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/RO_0002211" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002430", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/RO_0002212" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002429", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002331", "http://purl.obolibrary.org/obo/RO_0002213" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002407", "http://purl.obolibrary.org/obo/RO_0002629" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002409", "http://purl.obolibrary.org/obo/RO_0002409" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002409", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002409", "http://purl.obolibrary.org/obo/RO_0002630" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002211", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002578", "http://purl.obolibrary.org/obo/RO_0002578" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002629", "http://purl.obolibrary.org/obo/RO_0002407" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002407", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002629", "http://purl.obolibrary.org/obo/RO_0002629" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002409", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002630", "http://purl.obolibrary.org/obo/RO_0002409" ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/RO_0002409", + "chainPredicateIds" : [ "http://purl.obolibrary.org/obo/RO_0002630", "http://purl.obolibrary.org/obo/RO_0002630" ] + } ] + } ] +} \ No newline at end of file diff --git a/wbls.obo b/wbls.obo index 865257b..b2ff83e 100644 --- a/wbls.obo +++ b/wbls.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2023-01-03/wbls-simple.owl +data-version: wbls/releases/2023-04-11/wbls-simple.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 @@ -9,7 +9,7 @@ remark: Version: 1.04 ontology: wbls/wbls-simple property_value: http://purl.org/dc/elements/1.1/description "Ontology about the development and life stages of the C. elegans" xsd:string 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: http://purl.org/dc/terms/license "http://creativecommons.org/licenses/by/4.0/" xsd:string property_value: IAO:0000700 WBls:0000075 [Term] @@ -8802,7 +8802,7 @@ property_value: RO:0040042 BFO:0000020 property_value: RO:0040042 BFO:0000031 property_value: seeAlso http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections property_value: seeAlso http://ontologydesignpatterns.org/wiki/Submissions:PartOf -property_value: seeAlso http://www.obofoundry.org/ro/#OBO_REL:part_of xsd:string +property_value: seeAlso "http://www.obofoundry.org/ro/#OBO_REL:part_of" xsd:string is_transitive: true is_a: RO:0002131 ! overlaps @@ -8813,7 +8813,7 @@ name: preceded_by def: "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point." [] subset: ro-eco xref: BFO:0000062 -property_value: http://purl.org/dc/elements/1.1/source http://www.obofoundry.org/ro/#OBO_REL:preceded_by xsd:string +property_value: http://purl.org/dc/elements/1.1/source "http://www.obofoundry.org/ro/#OBO_REL:preceded_by" xsd:string property_value: IAO:0000111 "preceded by" xsd:string property_value: IAO:0000116 "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." xsd:string property_value: IAO:0000118 "is preceded by" xsd:string diff --git a/wbls.owl b/wbls.owl index 37e2fbc..e12f42d 100644 --- a/wbls.owl +++ b/wbls.owl @@ -7,6 +7,7 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:swrl="http://www.w3.org/2003/11/swrl#" @@ -16,19 +17,19 @@ 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 http://creativecommons.org/licenses/by/4.0/ - OBO-Edit 2.2-rc1 - 15:11:2017 12:24 - worm_development - 1.2 - chris-grove - Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. - Version: 1.04 - 2023-01-03 + OBO-Edit 2.2-rc1 + 15:11:2017 12:24 + worm_development + 1.2 + chris-grove + Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. + Version: 1.04 + 2023-04-11 @@ -65,8 +66,7 @@ - - definition + definition @@ -107,12 +107,6 @@ - - - - - - @@ -335,7 +329,7 @@ - has_alternative_id + has_alternative_id @@ -343,7 +337,7 @@ - has_broad_synonym + has_broad_synonym @@ -351,7 +345,7 @@ - database_cross_reference + database_cross_reference @@ -359,7 +353,7 @@ - has_exact_synonym + has_exact_synonym @@ -367,7 +361,7 @@ - has_narrow_synonym + has_narrow_synonym @@ -375,7 +369,7 @@ - has_obo_format_version + has_obo_format_version @@ -383,7 +377,7 @@ - has_obo_namespace + has_obo_namespace @@ -391,7 +385,7 @@ - has_related_synonym + has_related_synonym @@ -417,7 +411,7 @@ - shorthand + shorthand @@ -460,6 +454,12 @@ + + + + + + - Chris Mungall + This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning. helper property (not for use in curation) @@ -1997,7 +1998,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + is kinase activity @@ -2022,7 +2023,7 @@ For example, A and B may be gene products and binding of B by A positively regul p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q. - Chris Mungall + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. causal relation between processes @@ -2033,7 +2034,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + depends on @@ -2047,7 +2048,7 @@ For example, A and B may be gene products and binding of B by A positively regul The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch - Chris Mungall + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. causal relation between entities @@ -2060,7 +2061,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + causally influenced by (entity-centric) causally influenced by @@ -2072,7 +2073,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + interaction relation helper property http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ @@ -2084,7 +2085,7 @@ For example, A and B may be gene products and binding of B by A positively regul - Chris Mungall + molecular interaction relation helper property @@ -2107,8 +2108,8 @@ For example, A and B may be gene products and binding of B by A positively regul The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size). - Chris Mungall - Vasundra Touré + + causally influences (entity-centric) causally influences @@ -2122,7 +2123,7 @@ For example, A and B may be gene products and binding of B by A positively regul p directly regulates q iff p is immediately causally upstream of q and p regulates q. - Chris Mungall + directly regulates (processual) @@ -2145,7 +2146,7 @@ For example, A and B may be gene products and binding of B by A positively regul gland SubClassOf 'has part structure that is capable of' some 'secretion by cell' s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p - Chris Mungall + has part structure that is capable of @@ -2159,7 +2160,7 @@ For example, A and B may be gene products and binding of B by A positively regul A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity. Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. - Chris Mungall + causal relation between material entity and a process @@ -2267,7 +2268,7 @@ For example, A and B may be gene products and binding of B by A positively regul Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P. - cjm + 2018-01-25T23:20:13Z enables subfunction @@ -2283,7 +2284,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-01-26T23:49:30Z acts upstream of or within, positive effect @@ -2301,7 +2302,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-01-26T23:49:51Z acts upstream of or within, negative effect @@ -2320,7 +2321,7 @@ For example, A and B may be gene products and binding of B by A positively regul c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive - cjm + 2018-01-26T23:53:14Z acts upstream of, positive effect @@ -2340,7 +2341,7 @@ For example, A and B may be gene products and binding of B by A positively regul c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative - cjm + 2018-01-26T23:53:22Z acts upstream of, negative effect @@ -2354,7 +2355,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-03-13T23:55:05Z causally upstream of or within, negative effect @@ -2366,7 +2367,7 @@ For example, A and B may be gene products and binding of B by A positively regul - cjm + 2018-03-13T23:55:19Z causally upstream of or within, positive effect @@ -2380,7 +2381,7 @@ For example, A and B may be gene products and binding of B by A positively regul The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B. - Vasundra Touré + regulates activity of @@ -2420,8 +2421,8 @@ For example, A and B may be gene products and binding of B by A positively regul A diagnostic testing device utilizes a specimen. X device utilizes material Y means X and Y are material entities, and X is capable of some process P that has input Y. - https://orcid.org/0000-0001-9625-1899 - https://orcid.org/0000-0003-2620-0345 + + A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input. See github ticket https://github.com/oborel/obo-relations/issues/497 2021-11-08T12:00:00Z @@ -2653,80 +2654,99 @@ For example, A and B may be gene products and binding of B by A positively regul - - - anatomical entity - - - - - - - - biological entity + A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex. + CARO:0000000 + Following BFO, material anatomical entities may have immaterial parts (the lumen of your stomach is part of your stomach). The granularity limit follows the limits set by the Gene Ontology on the granularity limit for GO:cellular_component. Note that substances produced by an organism (sweat, feaces, urine) do not need to be part of an organism to qualify as an anatomical structure. + anatomical entity + + + + A part of a cellular organism that is either an immaterial entity or a material entity with granularity above the level of a protein complex. Or, a substance produced by a cellular organism with granularity above the level of a protein complex. + CAROC:Brownsville2014 + - - molecular process + 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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process. + 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. molecular_function - - - - - - - - catalytic activity - + + + + 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. These actions are described from two distinct but related perspectives: (1) biochemical activity, and (2) role as a component in a larger system/process. + GOC:pdt + - + A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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. + jl + 2012-09-19T15:05:24Z + Wikipedia:Biological_process + biological process + physiological process + single organism process + single-organism process + GO:0008150 + 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 + + + + A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. 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 + - + true + Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule. + Reactome:R-HSA-6788855 + Reactome:R-HSA-6788867 + phosphokinase activity + GO:0016301 + Note that this term encompasses all activities that transfer a single phosphate group; although ATP is by far the most common phosphate donor, reactions using other phosphate donors are included in this term. kinase activity - - - - - - - - transferase activity - - - - - - - - - transferase activity, transferring phosphorus-containing groups - + + + + Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule. + ISBN:0198506732 + + + + + Reactome:R-HSA-6788855 + FN3KRP phosphorylates PsiAm, RibAm + + + + + Reactome:R-HSA-6788867 + FN3K phosphorylates ketosamines + @@ -2734,9 +2754,16 @@ For example, A and B may be gene products and binding of B by A positively regul - quality (PATO) + A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities + PATO:0000001 quality + + + + A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities + PATOC:GVG + @@ -2744,18 +2771,18 @@ For example, A and B may be gene products and binding of B by A positively regul - The nematode life-cycle stage that occurs entirely outside of a host organism. - jl16 - 2015-03-19T10:42:18Z - worm_development - WBls:0000001 - free-living nematode stage + The nematode life-cycle stage that occurs entirely outside of a host organism. + jl16 + 2015-03-19T10:42:18Z + worm_development + WBls:0000001 + free-living nematode stage - The nematode life-cycle stage that occurs entirely outside of a host organism. - WB:jl + The nematode life-cycle stage that occurs entirely outside of a host organism. + WB:jl @@ -2764,17 +2791,17 @@ For example, A and B may be gene products and binding of B by A positively regul - All C. elegans development stages, including embryo, larva and adult stage. - all stages - worm_development - WBls:0000002 - all stages Ce + All C. elegans development stages, including embryo, larva and adult stage. + all stages + worm_development + WBls:0000002 + all stages Ce - All C. elegans development stages, including embryo, larva and adult stage. - WB:wjc + All C. elegans development stages, including embryo, larva and adult stage. + WB:wjc @@ -2784,18 +2811,18 @@ For example, A and B may be gene products and binding of B by A positively regul - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - embryo - worm_development - WBls:0000003 - embryo Ce + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + embryo + worm_development + WBls:0000003 + embryo Ce - The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:wjc + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:wjc @@ -2810,18 +2837,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - proliferating embryo - early embryo - worm_development - WBls:0000004 - proliferating embryo Ce + 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. + proliferating embryo + early embryo + worm_development + WBls:0000004 + proliferating embryo Ce - 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 + 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 @@ -2836,17 +2863,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - blastula embryo - worm_development - WBls:0000005 - blastula embryo Ce + 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. + blastula embryo + worm_development + WBls:0000005 + blastula embryo Ce - 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 + 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 @@ -2869,24 +2896,24 @@ For example, A and B may be gene products and binding of B by A positively regul - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - 1-cell embryo - fertilized egg - worm_development - WBls:0000006 - 1-cell embryo Ce + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + 1-cell embryo + fertilized egg + worm_development + WBls:0000006 + 1-cell embryo Ce - Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. - WB:wjc + Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell. + WB:wjc - fertilized egg - WB:dr + fertilized egg + WB:dr @@ -2909,17 +2936,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - 2-cell embryo - worm_development - WBls:0000007 - 2-cell embryo Ce + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + 2-cell embryo + worm_development + WBls:0000007 + 2-cell embryo Ce - The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. - WB:wjc + The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells. + WB:wjc @@ -2942,17 +2969,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - 4-cell embryo - worm_development - WBls:0000008 - 4-cell embryo Ce + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + 4-cell embryo + worm_development + WBls:0000008 + 4-cell embryo Ce - The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. - WB:wjc + The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells. + WB:wjc @@ -2969,17 +2996,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - 28-cell embryo - worm_development - WBls:0000009 - 28-cell embryo Ce + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + 28-cell embryo + worm_development + WBls:0000009 + 28-cell embryo Ce - The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. - WB:wjc + The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells. + WB:wjc @@ -3001,17 +3028,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - gastrulating embryo - worm_development - WBls:0000010 - gastrulating embryo Ce + 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. + gastrulating embryo + worm_development + WBls:0000010 + gastrulating embryo Ce - 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 + 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 @@ -3034,17 +3061,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - 51-cell embryo - worm_development - WBls:0000011 - 51-cell embryo Ce + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + 51-cell embryo + worm_development + WBls:0000011 + 51-cell embryo Ce - The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. - WB:wjc + The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells. + WB:wjc @@ -3067,17 +3094,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - 88-cell embryo - worm_development - WBls:0000012 - 88-cell embryo Ce + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + 88-cell embryo + worm_development + WBls:0000012 + 88-cell embryo Ce - The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. - WB:wjc + The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells. + WB:wjc @@ -3105,17 +3132,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - enclosing embryo - worm_development - WBls:0000013 - enclosing embryo Ce + 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. + enclosing embryo + worm_development + WBls:0000013 + enclosing embryo Ce - 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 + 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 @@ -3137,17 +3164,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - late cleavage stage embryo - worm_development - WBls:0000014 - late cleavage stage embryo Ce + 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. + late cleavage stage embryo + worm_development + WBls:0000014 + late cleavage stage embryo Ce - 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 + 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 @@ -3175,18 +3202,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - elongating embryo - mid embryo - worm_development - WBls:0000015 - elongating embryo Ce + 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. + elongating embryo + mid embryo + worm_development + WBls:0000015 + elongating embryo Ce - 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 + 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 @@ -3214,17 +3241,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - bean embryo - worm_development - WBls:0000016 - bean embryo Ce + 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. + bean embryo + worm_development + WBls:0000016 + bean embryo Ce - 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 + 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 @@ -3246,17 +3273,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - comma embryo - worm_development - WBls:0000017 - comma embryo Ce + 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. + comma embryo + worm_development + WBls:0000017 + comma embryo Ce - 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 + 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 @@ -3278,17 +3305,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - 1.5-fold embryo - worm_development - WBls:0000018 - 1.5-fold embryo Ce + 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. + 1.5-fold embryo + worm_development + WBls:0000018 + 1.5-fold embryo Ce - 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 + 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 @@ -3310,17 +3337,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - 2-fold embryo - worm_development - WBls:0000019 - 2-fold embryo Ce + 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. + 2-fold embryo + worm_development + WBls:0000019 + 2-fold embryo Ce - 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 + 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 @@ -3342,17 +3369,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - 3-fold embryo - worm_development - WBls:0000020 - 3-fold embryo Ce + 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. + 3-fold embryo + worm_development + WBls:0000020 + 3-fold embryo Ce - 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 + 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 @@ -3380,20 +3407,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fully-elongated embryo - late embryo - morphogenetic stage - pre-hatched embryo - worm_development - WBls:0000021 - fully-elongated embryo Ce + 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. + fully-elongated embryo + late embryo + morphogenetic stage + pre-hatched embryo + worm_development + WBls:0000021 + fully-elongated embryo Ce - 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. - WB:wjc + 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. + WB:wjc @@ -3409,18 +3436,18 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - postembryonic - worm_development - WBls:0000022 - postembryonic Ce + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + postembryonic + worm_development + WBls:0000022 + postembryonic Ce - A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. - WB:WBPerson2987 - WB:wjc + A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death. + WB:WBPerson2987 + WB:wjc @@ -3443,18 +3470,18 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - larva - worm_development - WBls:0000023 - larva Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + larva + worm_development + WBls:0000023 + larva Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:wjc + A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:wjc @@ -3477,17 +3504,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - L1 larva - worm_development - WBls:0000024 - L1 larva Ce + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + L1 larva + worm_development + WBls:0000024 + L1 larva Ce - The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. - WB:wjc + The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch. + WB:wjc @@ -3503,17 +3530,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2 lethargus - worm_development - WBls:0000025 - L1-L2 lethargus Ce + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2 lethargus + worm_development + WBls:0000025 + L1-L2 lethargus Ce - The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3535,17 +3562,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L1-L2 molt - worm_development - WBls:0000026 - L1-L2 molt Ce + 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. + L1-L2 molt + worm_development + WBls:0000026 + L1-L2 molt Ce - 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 + 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 @@ -3573,17 +3600,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. - L2 larva - worm_development - WBls:0000027 - L2 larva Ce + The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch. + L2 larva + worm_development + WBls:0000027 + L2 larva Ce - 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 + 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 @@ -3599,17 +3626,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2-L3 lethargus - worm_development - WBls:0000028 - L2-L3 lethargus Ce + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2-L3 lethargus + worm_development + WBls:0000028 + L2-L3 lethargus Ce - The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3631,17 +3658,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2-L3 molt - worm_development - WBls:0000029 - L2-L3 molt Ce + 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. + L2-L3 molt + worm_development + WBls:0000029 + L2-L3 molt Ce - 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 + 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 @@ -3657,17 +3684,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-dauer lethargus - worm_development - WBls:0000030 - L2d-dauer lethargus Ce + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-dauer lethargus + worm_development + WBls:0000030 + L2d-dauer lethargus Ce - The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3683,17 +3710,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2d-dauer molt - worm_development - WBls:0000031 - L2d-dauer molt Ce + 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. + L2d-dauer molt + worm_development + WBls:0000031 + L2d-dauer molt Ce - 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 + 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 @@ -3715,17 +3742,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A third stage larva specialized for dispersal and long term survival. - dauer larva - worm_development - WBls:0000032 - dauer larva Ce + A third stage larva specialized for dispersal and long term survival. + dauer larva + worm_development + WBls:0000032 + dauer larva Ce - A third stage larva specialized for dispersal and long term survival. - ISBN:0-87969-433-5 + A third stage larva specialized for dispersal and long term survival. + ISBN:0-87969-433-5 @@ -3741,17 +3768,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - postdauer-L4 lethargus - worm_development - WBls:0000033 - postdauer-L4 lethargus Ce + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + postdauer-L4 lethargus + worm_development + WBls:0000033 + postdauer-L4 lethargus Ce - The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3767,17 +3794,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - postdauer-L4 molt - worm_development - WBls:0000034 - postdauer-L4 molt Ce + 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. + postdauer-L4 molt + worm_development + WBls:0000034 + postdauer-L4 molt Ce - 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 + 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 @@ -3805,17 +3832,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - L3 larva - worm_development - WBls:0000035 - L3 larva Ce + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + L3 larva + worm_development + WBls:0000035 + L3 larva Ce - The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. - WB:wjc + The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch. + WB:wjc @@ -3831,17 +3858,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L3-L4 lethargus - worm_development - WBls:0000036 - L3-L4 lethargus Ce + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L3-L4 lethargus + worm_development + WBls:0000036 + L3-L4 lethargus Ce - The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3863,17 +3890,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L3-L4 molt - worm_development - WBls:0000037 - L3-L4 molt Ce + 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. + L3-L4 molt + worm_development + WBls:0000037 + L3-L4 molt Ce - 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 + 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 @@ -3907,17 +3934,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva - worm_development - WBls:0000038 - L4 larva Ce + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva + worm_development + WBls:0000038 + L4 larva Ce - The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -3933,17 +3960,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L4-adult lethargus - worm_development - WBls:0000039 - L4-adult lethargus Ce + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L4-adult lethargus + worm_development + WBls:0000039 + L4-adult lethargus Ce - The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -3959,17 +3986,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L4-adult molt - worm_development - WBls:0000040 - L4-adult molt Ce + 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. + L4-adult molt + worm_development + WBls:0000040 + L4-adult molt Ce - 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 + 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 @@ -4003,17 +4030,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - adult - worm_development - WBls:0000041 - adult Ce + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + adult + worm_development + WBls:0000041 + adult Ce - The stage that begins when a C.elegans individual is fully-developed and has reached maturity. - WB:wjc + The stage that begins when a C.elegans individual is fully-developed and has reached maturity. + WB:wjc @@ -4035,17 +4062,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2 ecdysis - worm_development - WBls:0000042 - L1-L2 ecdysis Ce + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2 ecdysis + worm_development + WBls:0000042 + L1-L2 ecdysis Ce - The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4061,17 +4088,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L1-L2d molt - worm_development - WBls:0000043 - L1-L2d molt Ce + 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. + L1-L2d molt + worm_development + WBls:0000043 + L1-L2d molt Ce - 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 + 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 @@ -4087,17 +4114,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L1-L2d lethargus - worm_development - WBls:0000044 - L1-L2d lethargus Ce + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L1-L2d lethargus + worm_development + WBls:0000044 + L1-L2d lethargus Ce - The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -4113,17 +4140,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - L1-L2d ecdysis - worm_development - WBls:0000045 - L1-L2d ecdysis Ce + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + L1-L2d ecdysis + worm_development + WBls:0000045 + L1-L2d ecdysis Ce - The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4139,17 +4166,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2d larva - worm_development - WBls:0000046 - L2d larva Ce + 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. + L2d larva + worm_development + WBls:0000046 + L2d larva Ce - 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 + 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 @@ -4171,17 +4198,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2-L3 ecdysis - worm_development - WBls:0000047 - L2-L3 ecdysis Ce + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2-L3 ecdysis + worm_development + WBls:0000047 + L2-L3 ecdysis Ce - The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4197,17 +4224,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-dauer ecdysis - worm_development - WBls:0000048 - L2d-dauer ecdysis Ce + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-dauer ecdysis + worm_development + WBls:0000048 + L2d-dauer ecdysis Ce - The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4229,17 +4256,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L3-L4 ecdysis - worm_development - WBls:0000049 - L3-L4 ecdysis Ce + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L3-L4 ecdysis + worm_development + WBls:0000049 + L3-L4 ecdysis Ce - The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4261,16 +4288,16 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - worm_development - WBls:0000050 - L4-adult ecdysis Ce + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + worm_development + WBls:0000050 + L4-adult ecdysis Ce - The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. - WB:wjc + The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle. + WB:wjc @@ -4286,17 +4313,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - postdauer-L4 ecdysis - worm_development - WBls:0000051 - postdauer-L4 ecdysis Ce + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + postdauer-L4 ecdysis + worm_development + WBls:0000051 + postdauer-L4 ecdysis Ce - The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4312,26 +4339,26 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PDL3 - dauer exit - worm_development - WBls:0000052 - "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)." - post dauer L3 stage Ce + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PDL3 + dauer exit + worm_development + WBls:0000052 + "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)." + post dauer L3 stage Ce - The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. - PMID:27417559 - WB:wjc + The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet. + PMID:27417559 + WB:wjc - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -4347,17 +4374,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - L2d-L3 molt - worm_development - WBls:0000053 - L2d-L3 molt Ce + 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. + L2d-L3 molt + worm_development + WBls:0000053 + L2d-L3 molt Ce - 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 + 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 @@ -4373,17 +4400,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - L2d-L3 lethargus - worm_development - WBls:0000054 - L2d-L3 lethargus Ce + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + L2d-L3 lethargus + worm_development + WBls:0000054 + L2d-L3 lethargus Ce - The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. - WB:wjc + The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old. + WB:wjc @@ -4399,17 +4426,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - L2d-L3 ecdysis - worm_development - WBls:0000055 - L2d-L3 ecdysis Ce + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + L2d-L3 ecdysis + worm_development + WBls:0000055 + L2d-L3 ecdysis Ce - The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. - WB:wjc + The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle. + WB:wjc @@ -4418,17 +4445,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage after an male animal is fully-developed and reaches maturity. - adult male - worm_development - WBls:0000056 - adult male Ce + The stage after an male animal is fully-developed and reaches maturity. + adult male + worm_development + WBls:0000056 + adult male Ce - The stage after an male animal is fully-developed and reaches maturity. - WB:wjc + The stage after an male animal is fully-developed and reaches maturity. + WB:wjc @@ -4437,17 +4464,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - adult hermaphrodite - worm_development - WBls:0000057 - adult hermaphrodite Ce + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + adult hermaphrodite + worm_development + WBls:0000057 + adult hermaphrodite Ce - The stage after an hermaphrodite animal is fully-developed and reaches maturity. - WB:wjc + The stage after an hermaphrodite animal is fully-developed and reaches maturity. + WB:wjc @@ -4463,17 +4490,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - pre-reproductive stage adult hermaphrodite - worm_development - WBls:0000058 - pre-reproductive stage adult hermaphrodite Ce + 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. + pre-reproductive stage adult hermaphrodite + worm_development + WBls:0000058 + pre-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -4482,18 +4509,18 @@ For example, A and B may be gene products and binding of B by A positively regul - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - jl16 - 2015-03-19T10:44:40Z - worm_development - WBls:0000059 - parasitic nematode stage + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + jl16 + 2015-03-19T10:44:40Z + worm_development + WBls:0000059 + parasitic nematode stage - The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. - WB:jl + The nematode life-cycle stage that occurs entirely or partially within a host or vector organism. + WB:jl @@ -4509,17 +4536,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - reproductive stage adult hermaphrodite - worm_development - WBls:0000060 - reproductive stage adult hermaphrodite Ce + 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. + reproductive stage adult hermaphrodite + worm_development + WBls:0000060 + reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -4535,17 +4562,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - oocyte-laying stage adult hermaphrodite - worm_development - WBls:0000061 - oocyte-laying stage adult hermaphrodite Ce + 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. + oocyte-laying stage adult hermaphrodite + worm_development + WBls:0000061 + oocyte-laying stage adult hermaphrodite Ce - 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 + 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 @@ -4561,17 +4588,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - post-reproductive stage adult hermaphrodite - worm_development - WBls:0000062 - post-reproductive stage adult hermaphrodite Ce + 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. + post-reproductive stage adult hermaphrodite + worm_development + WBls:0000062 + post-reproductive stage adult hermaphrodite Ce - 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 + 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 @@ -4587,17 +4614,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 0-24 hours after L4-adult molt. - newly molted young adult hermaphrodite - worm_development - WBls:0000063 - newly molted young adult hermaphrodite Ce + At 20 Centigrade: 0-24 hours after L4-adult molt. + newly molted young adult hermaphrodite + worm_development + WBls:0000063 + newly molted young adult hermaphrodite Ce - At 20 Centigrade: 0-24 hours after L4-adult molt. - WB:wjc + At 20 Centigrade: 0-24 hours after L4-adult molt. + WB:wjc @@ -4613,17 +4640,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - 1-day post-L4 adult hermaphrodite - worm_development - WBls:0000064 - 1-day post-L4 adult hermaphrodite Ce + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + 1-day post-L4 adult hermaphrodite + worm_development + WBls:0000064 + 1-day post-L4 adult hermaphrodite Ce - At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. - WB:wjc + At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage. + WB:wjc @@ -4645,17 +4672,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - 2-days post-L4 adult hermaphrodite - worm_development - WBls:0000065 - 2-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + 2-days post-L4 adult hermaphrodite + worm_development + WBls:0000065 + 2-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. - WB:wjc + At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage. + WB:wjc @@ -4677,17 +4704,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - 3-days post-L4 adult hermaphrodite - worm_development - WBls:0000066 - 3-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + 3-days post-L4 adult hermaphrodite + worm_development + WBls:0000066 + 3-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. - WB:wjc + At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage. + WB:wjc @@ -4709,17 +4736,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - 4-days post-L4 adult hermaphrodite - worm_development - WBls:0000067 - 4-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + 4-days post-L4 adult hermaphrodite + worm_development + WBls:0000067 + 4-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. - WB:wjc + At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage. + WB:wjc @@ -4741,17 +4768,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - 5-days post-L4 adult hermaphrodite - worm_development - WBls:0000068 - 5-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + 5-days post-L4 adult hermaphrodite + worm_development + WBls:0000068 + 5-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. - WB:wjc + At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage. + WB:wjc @@ -4773,17 +4800,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - 4-7 days post-L4 adult hermaphrodite - worm_development - WBls:0000069 - 4-7 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + 4-7 days post-L4 adult hermaphrodite + worm_development + WBls:0000069 + 4-7 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. - WB:wjc + At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage. + WB:wjc @@ -4805,17 +4832,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - 7-10 days post-L4 adult hermaphrodite - worm_development - WBls:0000070 - 7-10 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + 7-10 days post-L4 adult hermaphrodite + worm_development + WBls:0000070 + 7-10 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. - WB:wjc + At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage. + WB:wjc @@ -4838,17 +4865,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - 8-cell embryo - worm_development - WBls:0000071 - 8-cell embryo Ce + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + 8-cell embryo + worm_development + WBls:0000071 + 8-cell embryo Ce - The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. - WB:wjc + The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells. + WB:wjc @@ -4871,17 +4898,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - 12-cell embryo - worm_development - WBls:0000072 - 12-cell embryo Ce + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + 12-cell embryo + worm_development + WBls:0000072 + 12-cell embryo Ce - The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. - WB:wjc + The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells. + WB:wjc @@ -4890,17 +4917,17 @@ For example, A and B may be gene products and binding of B by A positively regul - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - L4 larva male - worm_development - WBls:0000073 - L4 larva male Ce + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + L4 larva male + worm_development + WBls:0000073 + L4 larva male Ce - The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. - WB:wjc + The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch. + WB:wjc @@ -4928,18 +4955,18 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - danielaraciti - 2012-05-22T14:35:04Z - worm_development - WBls:0000074 - 11-15 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + danielaraciti + 2012-05-22T14:35:04Z + worm_development + WBls:0000074 + 11-15 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. - WB:dr + At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage. + WB:dr @@ -4947,17 +4974,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage of a worm - danielaraciti - worm_development - WBls:0000075 - worm life stage + A developemental life stage of a worm + danielaraciti + worm_development + WBls:0000075 + worm life stage - A developemental life stage of a worm - WB:WBPerson2987 + A developemental life stage of a worm + WB:WBPerson2987 @@ -4966,19 +4993,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Any Strongyloides developmental stage, including free-living and parasitic stages. - jl16 - 2015-03-19T10:49:23Z - all stages Strongyloides - worm_development - WBls:0000076 - Strongyloides life stage + Any Strongyloides developmental stage, including free-living and parasitic stages. + jl16 + 2015-03-19T10:49:23Z + all stages Strongyloides + worm_development + WBls:0000076 + Strongyloides life stage - Any Strongyloides developmental stage, including free-living and parasitic stages. - WB:jl + Any Strongyloides developmental stage, including free-living and parasitic stages. + WB:jl @@ -4988,25 +5015,25 @@ For example, A and B may be gene products and binding of B by A positively regul - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2012-05-30T09:23:44Z - WBls:0000662 - sheathed microfilaria - Brugia immature microfilaria - sheathed microfilaria Bma - worm_development - immature microfilaria Bma - WBls:0000077 - Brugia sheathed microfilaria + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2012-05-30T09:23:44Z + WBls:0000662 + sheathed microfilaria + Brugia immature microfilaria + sheathed microfilaria Bma + worm_development + immature microfilaria Bma + WBls:0000077 + Brugia sheathed microfilaria - A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr - WB:mb + A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr + WB:mb @@ -5038,21 +5065,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The first stage larva. - danielaraciti - 2012-05-30T09:29:36Z - L1 - L1 larva Bma - worm_development - WBls:0000079 - Brugia L1 + The first stage larva. + danielaraciti + 2012-05-30T09:29:36Z + L1 + L1 larva Bma + worm_development + WBls:0000079 + Brugia L1 - The first stage larva. - WB:dr - WB:mb + The first stage larva. + WB:dr + WB:mb @@ -5073,21 +5100,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2012-05-30T09:30:40Z - L2 - L2 larva Bma - worm_development - WBls:0000080 - Brugia L2 + 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. + danielaraciti + 2012-05-30T09:30:40Z + L2 + L2 larva Bma + worm_development + WBls:0000080 + Brugia L2 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5108,21 +5135,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The third stage larva. - danielaraciti - 2012-05-30T09:31:06Z - L3 - L3 larva Bma - worm_development - WBls:0000081 - Brugia L3 + The third stage larva. + danielaraciti + 2012-05-30T09:31:06Z + L3 + L3 larva Bma + worm_development + WBls:0000081 + Brugia L3 - The third stage larva. - WB:dr - WB:mb + The third stage larva. + WB:dr + WB:mb @@ -5143,21 +5170,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2012-05-30T09:31:38Z - L4 - L4 larva Bma - worm_development - WBls:0000082 - Brugia L4 + 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. + danielaraciti + 2012-05-30T09:31:38Z + L4 + L4 larva Bma + worm_development + WBls:0000082 + Brugia L4 - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5178,21 +5205,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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). - danielaraciti - 2012-05-30T09:32:18Z - adult - adult Bma - worm_development - WBls:0000083 - Brugia adult + 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). + danielaraciti + 2012-05-30T09:32:18Z + adult + adult Bma + worm_development + WBls:0000083 + Brugia adult - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -5215,21 +5242,21 @@ For example, A and B may be gene products and binding of B by A positively regul - E-cell has divided into Ea and Ep. Contains 14 cells. - danielaraciti - 2012-10-02T17:15:41Z - 14-cell embryo - worm_development - WBls:0000084 - 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. - 14-cell embryo Ce + E-cell has divided into Ea and Ep. Contains 14 cells. + danielaraciti + 2012-10-02T17:15:41Z + 14-cell embryo + worm_development + WBls:0000084 + 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. + 14-cell embryo Ce - E-cell has divided into Ea and Ep. Contains 14 cells. - WB:WBPaper00046121 - WB:dr + E-cell has divided into Ea and Ep. Contains 14 cells. + WB:WBPaper00046121 + WB:dr @@ -5252,21 +5279,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Fourth cleavage of the AB lineage. Contains 24 cells. - danielaraciti - 2012-10-02T17:23:32Z - 24-cell embryo - worm_development - WBls:0000085 - 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. - 24-cell embryo Ce + Fourth cleavage of the AB lineage. Contains 24 cells. + danielaraciti + 2012-10-02T17:23:32Z + 24-cell embryo + worm_development + WBls:0000085 + 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. + 24-cell embryo Ce - Fourth cleavage of the AB lineage. Contains 24 cells. - WB:WBPaper00046121 - WB:dr + Fourth cleavage of the AB lineage. Contains 24 cells. + WB:WBPaper00046121 + WB:dr @@ -5289,21 +5316,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Fifth cleavage of the AB lineage. Contains 44 cells. - danielaraciti - 2012-10-02T17:25:18Z - 44-cell embryo - worm_development - WBls:0000086 - 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. - 44-cell embryo Ce + Fifth cleavage of the AB lineage. Contains 44 cells. + danielaraciti + 2012-10-02T17:25:18Z + 44-cell embryo + worm_development + WBls:0000086 + 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. + 44-cell embryo Ce - Fifth cleavage of the AB lineage. Contains 44 cells. - WB:WBPaper00046121 - WB:dr + Fifth cleavage of the AB lineage. Contains 44 cells. + WB:WBPaper00046121 + WB:dr @@ -5326,21 +5353,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Sixth cleavage of the AB lineage. Contains 68 cells. - danielaraciti - 2012-10-02T17:26:52Z - 68-cell embryo - worm_development - WBls:0000087 - 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. - 68-cell embryo Ce + Sixth cleavage of the AB lineage. Contains 68 cells. + danielaraciti + 2012-10-02T17:26:52Z + 68-cell embryo + worm_development + WBls:0000087 + 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. + 68-cell embryo Ce - Sixth cleavage of the AB lineage. Contains 68 cells. - WB:WBPaper00046121 - WB:dr + Sixth cleavage of the AB lineage. Contains 68 cells. + WB:WBPaper00046121 + WB:dr @@ -5363,21 +5390,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Seventh cleavage of the AB lineage. Contains 86 cells. - danielaraciti - 2012-10-02T17:27:50Z - 86-cell embryo - worm_development - WBls:0000088 - 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. - 86-cell embryo Ce + Seventh cleavage of the AB lineage. Contains 86 cells. + danielaraciti + 2012-10-02T17:27:50Z + 86-cell embryo + worm_development + WBls:0000088 + 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. + 86-cell embryo Ce - Seventh cleavage of the AB lineage. Contains 86 cells. - WB:WBPaper00046121 - WB:dr + Seventh cleavage of the AB lineage. Contains 86 cells. + WB:WBPaper00046121 + WB:dr @@ -5400,19 +5427,19 @@ For example, A and B may be gene products and binding of B by A positively regul - P4 and M cells have finished migrating. Contains 190 cells. - danielaraciti - 2012-10-15T13:19:10Z - 190-cells embryo - worm_development - WBls:0000089 - 190-cells embryo Ce + P4 and M cells have finished migrating. Contains 190 cells. + danielaraciti + 2012-10-15T13:19:10Z + 190-cells embryo + worm_development + WBls:0000089 + 190-cells embryo Ce - P4 and M cells have finished migrating. Contains 190 cells. - WB:dr + P4 and M cells have finished migrating. Contains 190 cells. + WB:dr @@ -5435,19 +5462,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - danielaraciti - 2012-10-16T15:37:30Z - 96-cell embryo - worm_development - WBls:0000090 - 96-cell embryo Ce + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + danielaraciti + 2012-10-16T15:37:30Z + 96-cell embryo + worm_development + WBls:0000090 + 96-cell embryo Ce - The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. - WB:dr + The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells. + WB:dr @@ -5456,21 +5483,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Any Brugia developmental stage, including embryo, larva and adult stage. - danielaraciti - 2013-11-12T03:18:57Z - all stages Bma - worm_development - WBls:0000091 - Brugia life stage + Any Brugia developmental stage, including embryo, larva and adult stage. + danielaraciti + 2013-11-12T03:18:57Z + all stages Bma + worm_development + WBls:0000091 + Brugia life stage - Any Brugia developmental stage, including embryo, larva and adult stage. - WB:dr - WB:jl - WB:mb + Any Brugia developmental stage, including embryo, larva and adult stage. + WB:dr + WB:jl + WB:mb @@ -5480,21 +5507,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - danielaraciti - 2013-11-12T04:48:28Z - embryo - embryo Bma - worm_development - WBls:0000092 - Brugia embryo + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + danielaraciti + 2013-11-12T04:48:28Z + embryo + embryo Bma + worm_development + WBls:0000092 + Brugia embryo - The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -5510,21 +5537,21 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - danielaraciti - 2013-11-12T04:50:29Z - postembryonic stage - postembryonic Bma - worm_development - WBls:0000093 - Brugia postembryonic stage + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + danielaraciti + 2013-11-12T04:50:29Z + postembryonic stage + postembryonic Bma + worm_development + WBls:0000093 + Brugia postembryonic stage - A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -5539,21 +5566,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2013-11-12T04:55:53Z - early embryo - early embryo Bma - worm_development - WBls:0000094 - Brugia early embryo + 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. + danielaraciti + 2013-11-12T04:55:53Z + early embryo + early embryo Bma + worm_development + WBls:0000094 + Brugia early embryo - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5575,21 +5602,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Proliferates from 100 cells to Lima bean stage. - danielaraciti - 2013-11-12T04:59:19Z - middle embryo - middle embryo Bma - worm_development - WBls:0000095 - Brugia middle embryo + Proliferates from 100 cells to Lima bean stage. + danielaraciti + 2013-11-12T04:59:19Z + middle embryo + middle embryo Bma + worm_development + WBls:0000095 + Brugia middle embryo - Proliferates from 100 cells to Lima bean stage. - WB:dr - WB:mb + Proliferates from 100 cells to Lima bean stage. + WB:dr + WB:mb @@ -5611,21 +5638,21 @@ For example, A and B may be gene products and binding of B by A positively regul - From Lima bean to hatching. - danielaraciti - 2013-11-12T05:00:28Z - late embryo - late embryo Bma - worm_development - WBls:0000096 - Brugia late embryo + From Lima bean to hatching. + danielaraciti + 2013-11-12T05:00:28Z + late embryo + late embryo Bma + worm_development + WBls:0000096 + Brugia late embryo - From Lima bean to hatching. - WB:dr - WB:mb + From Lima bean to hatching. + WB:dr + WB:mb @@ -5647,21 +5674,21 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - danielaraciti - 2013-11-12T05:12:19Z - larval stage - larva Bma - worm_development - WBls:0000097 - Brugia larval stage + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + danielaraciti + 2013-11-12T05:12:19Z + larval stage + larva Bma + worm_development + WBls:0000097 + Brugia larval stage - A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. - WB:WBPerson2987 - WB:dr + A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood. + WB:WBPerson2987 + WB:dr @@ -5671,24 +5698,24 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2013-11-12T05:23:54Z - L3i - Brugia vector-derived L3 - vector-derived L3 Bma - worm_development - iL3 - infective L3 - WBls:0000098 - Brugia L3i + 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. + danielaraciti + 2013-11-12T05:23:54Z + L3i + Brugia vector-derived L3 + vector-derived L3 Bma + worm_development + iL3 + infective L3 + WBls:0000098 + Brugia L3i - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -5704,22 +5731,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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). - danielaraciti - 2013-11-12T05:24:59Z - post-infection L3 - post-infection L3 Bma - worm_development - piL3 - WBls:0000099 - Brugia post-infection L3 + 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). + danielaraciti + 2013-11-12T05:24:59Z + post-infection L3 + post-infection L3 Bma + worm_development + piL3 + WBls:0000099 + Brugia post-infection L3 - 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). - WB:dr - WB:mb + 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). + WB:dr + WB:mb @@ -5741,21 +5768,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2013-11-12T05:37:52Z - young adult - young adult Bma - worm_development - WBls:0000100 - Brugia young adult + 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. + danielaraciti + 2013-11-12T05:37:52Z + young adult + young adult Bma + worm_development + WBls:0000100 + Brugia young adult - 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 + 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 @@ -5764,21 +5791,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage in a nematode, including embryo, larva and adult stage. - danielaraciti - 2013-11-25T06:13:37Z - all stages nematode - nematode developmental stage - worm_development - WBls:0000101 - Nematode life stage + Any developmental stage in a nematode, including embryo, larva and adult stage. + danielaraciti + 2013-11-25T06:13:37Z + all stages nematode + nematode developmental stage + worm_development + WBls:0000101 + Nematode life stage - Any developmental stage in a nematode, including embryo, larva and adult stage. - WB:dr - WB:jl + Any developmental stage in a nematode, including embryo, larva and adult stage. + WB:dr + WB:jl @@ -5787,21 +5814,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - danielaraciti - 2013-11-25T06:14:14Z - embryo nematode - nematode egg stage - worm_development - WBls:0000102 - nematode embryo + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + danielaraciti + 2013-11-25T06:14:14Z + embryo nematode + nematode egg stage + worm_development + WBls:0000102 + nematode embryo - The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. - WB:WBPerson2987 - WB:dr + The whole period of embryogenesis in a nematode, from the formation of an egg until hatching. + WB:WBPerson2987 + WB:dr @@ -5817,19 +5844,19 @@ For example, A and B may be gene products and binding of B by A positively regul - A developemental life stage in a nematode that occurs from egg hatching until death. - danielaraciti - 2013-11-25T06:14:39Z - worm_development - WBls:0000103 - postembryonic nematode + A developemental life stage in a nematode that occurs from egg hatching until death. + danielaraciti + 2013-11-25T06:14:39Z + worm_development + WBls:0000103 + postembryonic nematode - A developemental life stage in a nematode that occurs from egg hatching until death. - WB:WBPerson2987 - WB:dr + A developemental life stage in a nematode that occurs from egg hatching until death. + WB:WBPerson2987 + WB:dr @@ -5845,20 +5872,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - danielaraciti - 2013-11-25T06:18:53Z - L5 - adult nematode - worm_development - WBls:0000104 - nematode adult + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + danielaraciti + 2013-11-25T06:18:53Z + L5 + adult nematode + worm_development + WBls:0000104 + nematode adult - The nematode life-stage that begins when the organism is fully-developed and has reached maturity. - WB:dr + The nematode life-stage that begins when the organism is fully-developed and has reached maturity. + WB:dr @@ -5867,21 +5894,21 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage that begins after hatching and ends when the nematode becomes adult. - danielaraciti - 2013-11-25T06:19:27Z - larval stage - larva nematode - nematode larva - worm_development - WBls:0000105 - nematode larval stage + The stage that begins after hatching and ends when the nematode becomes adult. + danielaraciti + 2013-11-25T06:19:27Z + larval stage + larva nematode + nematode larva + worm_development + WBls:0000105 + nematode larval stage - The stage that begins after hatching and ends when the nematode becomes adult. - WB:dr + The stage that begins after hatching and ends when the nematode becomes adult. + WB:dr @@ -5890,19 +5917,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The first stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:28Z - L1 larva nematode - worm_development - WBls:0000106 - L1 larval stage + The first stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:28Z + L1 larva nematode + worm_development + WBls:0000106 + L1 larval stage - The first stage larva of nematodes. - WB:dr + The first stage larva of nematodes. + WB:dr @@ -5918,19 +5945,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The second stage larva of nematodes. - danielaraciti - 2013-11-25T06:20:54Z - L2 larva nematode - worm_development - WBls:0000107 - L2 larval stage + The second stage larva of nematodes. + danielaraciti + 2013-11-25T06:20:54Z + L2 larva nematode + worm_development + WBls:0000107 + L2 larval stage - The second stage larva of nematodes. - WB:dr + The second stage larva of nematodes. + WB:dr @@ -5946,19 +5973,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The third stage larva of nematodes. - danielaraciti - 2013-11-25T06:21:33Z - L3 larva nematode - worm_development - WBls:0000108 - L3 larval stage + The third stage larva of nematodes. + danielaraciti + 2013-11-25T06:21:33Z + L3 larva nematode + worm_development + WBls:0000108 + L3 larval stage - The third stage larva of nematodes. - WB:dr + The third stage larva of nematodes. + WB:dr @@ -5974,19 +6001,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The fourth stage larva of nematodes. - danielaraciti - 2013-11-25T06:22:48Z - L4 larva nematode - worm_development - WBls:0000109 - L4 larval stage + The fourth stage larva of nematodes. + danielaraciti + 2013-11-25T06:22:48Z + L4 larva nematode + worm_development + WBls:0000109 + L4 larval stage - The fourth stage larva of nematodes. - WB:dr + The fourth stage larva of nematodes. + WB:dr @@ -5995,21 +6022,21 @@ For example, A and B may be gene products and binding of B by A positively regul - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - danielaraciti - 2013-11-25T06:23:23Z - sheathed microfilaria nematode - sheathed microfilariae - worm_development - WBls:0000110 - sheathed microfilaria + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + danielaraciti + 2013-11-25T06:23:23Z + sheathed microfilaria nematode + sheathed microfilariae + worm_development + WBls:0000110 + sheathed microfilaria - A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". - WB:WBPerson2987 - WB:dr + A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence "sheathed". + WB:WBPerson2987 + WB:dr @@ -6037,18 +6064,18 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - danielaraciti - 16-18 days post-L4 adult hermaphrodite - worm_development - WBls:0000111 - 16-18 days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + danielaraciti + 16-18 days post-L4 adult hermaphrodite + worm_development + WBls:0000111 + 16-18 days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. - WB:dr + At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage. + WB:dr @@ -6064,20 +6091,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 1 min post first-cleavage - worm_development - WBls:0000112 - 1 min post first-cleavage Ce + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 1 min post first-cleavage + worm_development + WBls:0000112 + 1 min post first-cleavage Ce - The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6100,20 +6127,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 2 min post first-cleavage - worm_development - WBls:0000113 - 2 min post first-cleavage Ce + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 2 min post first-cleavage + worm_development + WBls:0000113 + 2 min post first-cleavage Ce - The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6136,20 +6163,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 3 min post first-cleavage - worm_development - WBls:0000114 - 3 min post first-cleavage Ce + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 3 min post first-cleavage + worm_development + WBls:0000114 + 3 min post first-cleavage Ce - The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6172,20 +6199,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 4 min post first-cleavage - worm_development - WBls:0000115 - 4 min post first-cleavage Ce + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 4 min post first-cleavage + worm_development + WBls:0000115 + 4 min post first-cleavage Ce - The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6208,20 +6235,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 5 min post first-cleavage - worm_development - WBls:0000116 - 5 min post first-cleavage Ce + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 5 min post first-cleavage + worm_development + WBls:0000116 + 5 min post first-cleavage Ce - The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6244,20 +6271,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 6 min post first-cleavage - worm_development - WBls:0000117 - 6 min post first-cleavage Ce + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 6 min post first-cleavage + worm_development + WBls:0000117 + 6 min post first-cleavage Ce - The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6280,20 +6307,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 7 min post first-cleavage - worm_development - WBls:0000118 - 7 min post first-cleavage Ce + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 7 min post first-cleavage + worm_development + WBls:0000118 + 7 min post first-cleavage Ce - The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6316,20 +6343,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 8 min post first-cleavage - worm_development - WBls:0000119 - 8 min post first-cleavage Ce + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 8 min post first-cleavage + worm_development + WBls:0000119 + 8 min post first-cleavage Ce - The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6352,20 +6379,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 9 min post first-cleavage - worm_development - WBls:0000120 - 9 min post first-cleavage Ce + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 9 min post first-cleavage + worm_development + WBls:0000120 + 9 min post first-cleavage Ce - The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6388,20 +6415,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 10 min post first-cleavage - worm_development - WBls:0000121 - 10 min post first-cleavage Ce + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 10 min post first-cleavage + worm_development + WBls:0000121 + 10 min post first-cleavage Ce - The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6424,20 +6451,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 11 min post first-cleavage - worm_development - WBls:0000122 - 11 min post first-cleavage Ce + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 11 min post first-cleavage + worm_development + WBls:0000122 + 11 min post first-cleavage Ce - The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6460,20 +6487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 12 min post first-cleavage - worm_development - WBls:0000123 - 12 min post first-cleavage Ce + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 12 min post first-cleavage + worm_development + WBls:0000123 + 12 min post first-cleavage Ce - The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6496,20 +6523,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 13 min post first-cleavage - worm_development - WBls:0000124 - 13 min post first-cleavage Ce + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 13 min post first-cleavage + worm_development + WBls:0000124 + 13 min post first-cleavage Ce - The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6532,20 +6559,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 14 min post first-cleavage - worm_development - WBls:0000125 - 14 min post first-cleavage Ce + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 14 min post first-cleavage + worm_development + WBls:0000125 + 14 min post first-cleavage Ce - The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6568,20 +6595,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 15 min post first-cleavage - worm_development - WBls:0000126 - 15 min post first-cleavage Ce + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 15 min post first-cleavage + worm_development + WBls:0000126 + 15 min post first-cleavage Ce - The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6604,20 +6631,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 16 min post first-cleavage - worm_development - WBls:0000127 - 16 min post first-cleavage Ce + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 16 min post first-cleavage + worm_development + WBls:0000127 + 16 min post first-cleavage Ce - The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6640,20 +6667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 17 min post first-cleavage - worm_development - WBls:0000128 - 17 min post first-cleavage Ce + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 17 min post first-cleavage + worm_development + WBls:0000128 + 17 min post first-cleavage Ce - The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6676,20 +6703,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 18 min post first-cleavage - worm_development - WBls:0000129 - 18 min post first-cleavage Ce + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 18 min post first-cleavage + worm_development + WBls:0000129 + 18 min post first-cleavage Ce - The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6712,20 +6739,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 19 min post first-cleavage - worm_development - WBls:0000130 - 19 min post first-cleavage Ce + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 19 min post first-cleavage + worm_development + WBls:0000130 + 19 min post first-cleavage Ce - The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6748,20 +6775,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 20 min post first-cleavage - worm_development - WBls:0000131 - 20 min post first-cleavage Ce + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 20 min post first-cleavage + worm_development + WBls:0000131 + 20 min post first-cleavage Ce - The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6784,20 +6811,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 21 min post first-cleavage - worm_development - WBls:0000132 - 21 min post first-cleavage Ce + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 21 min post first-cleavage + worm_development + WBls:0000132 + 21 min post first-cleavage Ce - The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6820,20 +6847,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 22 min post first-cleavage - worm_development - WBls:0000133 - 22 min post first-cleavage Ce + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 22 min post first-cleavage + worm_development + WBls:0000133 + 22 min post first-cleavage Ce - The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6856,20 +6883,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 23 min post first-cleavage - worm_development - WBls:0000134 - 23 min post first-cleavage Ce + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 23 min post first-cleavage + worm_development + WBls:0000134 + 23 min post first-cleavage Ce - The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6892,20 +6919,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 24 min post first-cleavage - worm_development - WBls:0000135 - 24 min post first-cleavage Ce + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 24 min post first-cleavage + worm_development + WBls:0000135 + 24 min post first-cleavage Ce - The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6928,20 +6955,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 25 min post first-cleavage - worm_development - WBls:0000136 - 25 min post first-cleavage Ce + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 25 min post first-cleavage + worm_development + WBls:0000136 + 25 min post first-cleavage Ce - The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -6964,20 +6991,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 26 min post first-cleavage - worm_development - WBls:0000137 - 26 min post first-cleavage Ce + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 26 min post first-cleavage + worm_development + WBls:0000137 + 26 min post first-cleavage Ce - The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7000,20 +7027,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 27 min post first-cleavage - worm_development - WBls:0000138 - 27 min post first-cleavage Ce + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 27 min post first-cleavage + worm_development + WBls:0000138 + 27 min post first-cleavage Ce - The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7036,20 +7063,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 28 min post first-cleavage - worm_development - WBls:0000139 - 28 min post first-cleavage Ce + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 28 min post first-cleavage + worm_development + WBls:0000139 + 28 min post first-cleavage Ce - The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7072,20 +7099,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 29 min post first-cleavage - worm_development - WBls:0000140 - 29 min post first-cleavage Ce + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 29 min post first-cleavage + worm_development + WBls:0000140 + 29 min post first-cleavage Ce - The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7108,20 +7135,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 30 min post first-cleavage - worm_development - WBls:0000141 - 30 min post first-cleavage Ce + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 30 min post first-cleavage + worm_development + WBls:0000141 + 30 min post first-cleavage Ce - The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7144,20 +7171,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 31 min post first-cleavage - worm_development - WBls:0000142 - 31 min post first-cleavage Ce + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 31 min post first-cleavage + worm_development + WBls:0000142 + 31 min post first-cleavage Ce - The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7180,20 +7207,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 32 min post first-cleavage - worm_development - WBls:0000143 - 32 min post first-cleavage Ce + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 32 min post first-cleavage + worm_development + WBls:0000143 + 32 min post first-cleavage Ce - The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7216,20 +7243,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 33 min post first-cleavage - worm_development - WBls:0000144 - 33 min post first-cleavage Ce + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 33 min post first-cleavage + worm_development + WBls:0000144 + 33 min post first-cleavage Ce - The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7252,20 +7279,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 34 min post first-cleavage - worm_development - WBls:0000145 - 34 min post first-cleavage Ce + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 34 min post first-cleavage + worm_development + WBls:0000145 + 34 min post first-cleavage Ce - The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7288,20 +7315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 35 min post first-cleavage - worm_development - WBls:0000146 - 35 min post first-cleavage Ce + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 35 min post first-cleavage + worm_development + WBls:0000146 + 35 min post first-cleavage Ce - The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7324,20 +7351,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 36 min post first-cleavage - worm_development - WBls:0000147 - 36 min post first-cleavage Ce + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 36 min post first-cleavage + worm_development + WBls:0000147 + 36 min post first-cleavage Ce - The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7360,20 +7387,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 37 min post first-cleavage - worm_development - WBls:0000148 - 37 min post first-cleavage Ce + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 37 min post first-cleavage + worm_development + WBls:0000148 + 37 min post first-cleavage Ce - The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7396,20 +7423,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 38 min post first-cleavage - worm_development - WBls:0000149 - 38 min post first-cleavage Ce + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 38 min post first-cleavage + worm_development + WBls:0000149 + 38 min post first-cleavage Ce - The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7432,20 +7459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 39 min post first-cleavage - worm_development - WBls:0000150 - 39 min post first-cleavage Ce + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 39 min post first-cleavage + worm_development + WBls:0000150 + 39 min post first-cleavage Ce - The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7468,20 +7495,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 40 min post first-cleavage - worm_development - WBls:0000151 - 40 min post first-cleavage Ce + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 40 min post first-cleavage + worm_development + WBls:0000151 + 40 min post first-cleavage Ce - The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7504,20 +7531,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 41 min post first-cleavage - worm_development - WBls:0000152 - 41 min post first-cleavage Ce + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 41 min post first-cleavage + worm_development + WBls:0000152 + 41 min post first-cleavage Ce - The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7540,20 +7567,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 42 min post first-cleavage - worm_development - WBls:0000153 - 42 min post first-cleavage Ce + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 42 min post first-cleavage + worm_development + WBls:0000153 + 42 min post first-cleavage Ce - The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7576,20 +7603,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 43 min post first-cleavage - worm_development - WBls:0000154 - 43 min post first-cleavage Ce + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 43 min post first-cleavage + worm_development + WBls:0000154 + 43 min post first-cleavage Ce - The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7612,20 +7639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 44 min post first-cleavage - worm_development - WBls:0000155 - 44 min post first-cleavage Ce + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 44 min post first-cleavage + worm_development + WBls:0000155 + 44 min post first-cleavage Ce - The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7648,20 +7675,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 45 min post first-cleavage - worm_development - WBls:0000156 - 45 min post first-cleavage Ce + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 45 min post first-cleavage + worm_development + WBls:0000156 + 45 min post first-cleavage Ce - The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7684,20 +7711,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 46 min post first-cleavage - worm_development - WBls:0000157 - 46 min post first-cleavage Ce + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 46 min post first-cleavage + worm_development + WBls:0000157 + 46 min post first-cleavage Ce - The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7720,20 +7747,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 47 min post first-cleavage - worm_development - WBls:0000158 - 47 min post first-cleavage Ce + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 47 min post first-cleavage + worm_development + WBls:0000158 + 47 min post first-cleavage Ce - The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7756,20 +7783,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 48 min post first-cleavage - worm_development - WBls:0000159 - 48 min post first-cleavage Ce + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 48 min post first-cleavage + worm_development + WBls:0000159 + 48 min post first-cleavage Ce - The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7792,20 +7819,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 49 min post first-cleavage - worm_development - WBls:0000160 - 49 min post first-cleavage Ce + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 49 min post first-cleavage + worm_development + WBls:0000160 + 49 min post first-cleavage Ce - The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7828,20 +7855,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 50 min post first-cleavage - worm_development - WBls:0000161 - 50 min post first-cleavage Ce + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 50 min post first-cleavage + worm_development + WBls:0000161 + 50 min post first-cleavage Ce - The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7864,20 +7891,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 51 min post first-cleavage - worm_development - WBls:0000162 - 51 min post first-cleavage Ce + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 51 min post first-cleavage + worm_development + WBls:0000162 + 51 min post first-cleavage Ce - The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7900,20 +7927,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 52 min post first-cleavage - worm_development - WBls:0000163 - 52 min post first-cleavage Ce + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 52 min post first-cleavage + worm_development + WBls:0000163 + 52 min post first-cleavage Ce - The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7936,20 +7963,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 53 min post first-cleavage - worm_development - WBls:0000164 - 53 min post first-cleavage Ce + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 53 min post first-cleavage + worm_development + WBls:0000164 + 53 min post first-cleavage Ce - The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -7972,20 +7999,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 54 min post first-cleavage - worm_development - WBls:0000165 - 54 min post first-cleavage Ce + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 54 min post first-cleavage + worm_development + WBls:0000165 + 54 min post first-cleavage Ce - The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8008,20 +8035,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 55 min post first-cleavage - worm_development - WBls:0000166 - 55 min post first-cleavage Ce + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 55 min post first-cleavage + worm_development + WBls:0000166 + 55 min post first-cleavage Ce - The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8044,20 +8071,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 56 min post first-cleavage - worm_development - WBls:0000167 - 56 min post first-cleavage Ce + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 56 min post first-cleavage + worm_development + WBls:0000167 + 56 min post first-cleavage Ce - The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8080,20 +8107,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 57 min post first-cleavage - worm_development - WBls:0000168 - 57 min post first-cleavage Ce + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 57 min post first-cleavage + worm_development + WBls:0000168 + 57 min post first-cleavage Ce - The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8116,20 +8143,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 58 min post first-cleavage - worm_development - WBls:0000169 - 58 min post first-cleavage Ce + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 58 min post first-cleavage + worm_development + WBls:0000169 + 58 min post first-cleavage Ce - The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8152,20 +8179,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 59 min post first-cleavage - worm_development - WBls:0000170 - 59 min post first-cleavage Ce + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 59 min post first-cleavage + worm_development + WBls:0000170 + 59 min post first-cleavage Ce - The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8188,20 +8215,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 60 min post first-cleavage - worm_development - WBls:0000171 - 60 min post first-cleavage Ce + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 60 min post first-cleavage + worm_development + WBls:0000171 + 60 min post first-cleavage Ce - The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8224,20 +8251,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 61 min post first-cleavage - worm_development - WBls:0000172 - 61 min post first-cleavage Ce + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 61 min post first-cleavage + worm_development + WBls:0000172 + 61 min post first-cleavage Ce - The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8260,20 +8287,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 62 min post first-cleavage - worm_development - WBls:0000173 - 62 min post first-cleavage Ce + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 62 min post first-cleavage + worm_development + WBls:0000173 + 62 min post first-cleavage Ce - The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8296,20 +8323,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 63 min post first-cleavage - worm_development - WBls:0000174 - 63 min post first-cleavage Ce + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 63 min post first-cleavage + worm_development + WBls:0000174 + 63 min post first-cleavage Ce - The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8332,20 +8359,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 64 min post first-cleavage - worm_development - WBls:0000175 - 64 min post first-cleavage Ce + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 64 min post first-cleavage + worm_development + WBls:0000175 + 64 min post first-cleavage Ce - The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8368,20 +8395,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 65 min post first-cleavage - worm_development - WBls:0000176 - 65 min post first-cleavage Ce + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 65 min post first-cleavage + worm_development + WBls:0000176 + 65 min post first-cleavage Ce - The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8404,20 +8431,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 66 min post first-cleavage - worm_development - WBls:0000177 - 66 min post first-cleavage Ce + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 66 min post first-cleavage + worm_development + WBls:0000177 + 66 min post first-cleavage Ce - The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8440,20 +8467,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 67 min post first-cleavage - worm_development - WBls:0000178 - 67 min post first-cleavage Ce + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 67 min post first-cleavage + worm_development + WBls:0000178 + 67 min post first-cleavage Ce - The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8476,20 +8503,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 68 min post first-cleavage - worm_development - WBls:0000179 - 68 min post first-cleavage Ce + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 68 min post first-cleavage + worm_development + WBls:0000179 + 68 min post first-cleavage Ce - The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8512,20 +8539,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 69 min post first-cleavage - worm_development - WBls:0000180 - 69 min post first-cleavage Ce + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 69 min post first-cleavage + worm_development + WBls:0000180 + 69 min post first-cleavage Ce - The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8548,20 +8575,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 70 min post first-cleavage - worm_development - WBls:0000181 - 70 min post first-cleavage Ce + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 70 min post first-cleavage + worm_development + WBls:0000181 + 70 min post first-cleavage Ce - The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8584,20 +8611,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 71 min post first-cleavage - worm_development - WBls:0000182 - 71 min post first-cleavage Ce + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 71 min post first-cleavage + worm_development + WBls:0000182 + 71 min post first-cleavage Ce - The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8620,20 +8647,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 72 min post first-cleavage - worm_development - WBls:0000183 - 72 min post first-cleavage Ce + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 72 min post first-cleavage + worm_development + WBls:0000183 + 72 min post first-cleavage Ce - The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8656,20 +8683,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 73 min post first-cleavage - worm_development - WBls:0000184 - 73 min post first-cleavage Ce + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 73 min post first-cleavage + worm_development + WBls:0000184 + 73 min post first-cleavage Ce - The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8692,20 +8719,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 74 min post first-cleavage - worm_development - WBls:0000185 - 74 min post first-cleavage Ce + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 74 min post first-cleavage + worm_development + WBls:0000185 + 74 min post first-cleavage Ce - The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8728,20 +8755,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 75 min post first-cleavage - worm_development - WBls:0000186 - 75 min post first-cleavage Ce + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 75 min post first-cleavage + worm_development + WBls:0000186 + 75 min post first-cleavage Ce - The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8764,20 +8791,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 76 min post first-cleavage - worm_development - WBls:0000187 - 76 min post first-cleavage Ce + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 76 min post first-cleavage + worm_development + WBls:0000187 + 76 min post first-cleavage Ce - The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8800,20 +8827,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 77 min post first-cleavage - worm_development - WBls:0000188 - 77 min post first-cleavage Ce + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 77 min post first-cleavage + worm_development + WBls:0000188 + 77 min post first-cleavage Ce - The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8836,20 +8863,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 78 min post first-cleavage - worm_development - WBls:0000189 - 78 min post first-cleavage Ce + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 78 min post first-cleavage + worm_development + WBls:0000189 + 78 min post first-cleavage Ce - The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8872,20 +8899,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 79 min post first-cleavage - worm_development - WBls:0000190 - 79 min post first-cleavage Ce + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 79 min post first-cleavage + worm_development + WBls:0000190 + 79 min post first-cleavage Ce - The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8908,20 +8935,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 80 min post first-cleavage - worm_development - WBls:0000191 - 80 min post first-cleavage Ce + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 80 min post first-cleavage + worm_development + WBls:0000191 + 80 min post first-cleavage Ce - The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8944,20 +8971,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 81 min post first-cleavage - worm_development - WBls:0000192 - 81 min post first-cleavage Ce + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 81 min post first-cleavage + worm_development + WBls:0000192 + 81 min post first-cleavage Ce - The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -8980,20 +9007,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 82 min post first-cleavage - worm_development - WBls:0000193 - 82 min post first-cleavage Ce + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 82 min post first-cleavage + worm_development + WBls:0000193 + 82 min post first-cleavage Ce - The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9016,20 +9043,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 83 min post first-cleavage - worm_development - WBls:0000194 - 83 min post first-cleavage Ce + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 83 min post first-cleavage + worm_development + WBls:0000194 + 83 min post first-cleavage Ce - The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9052,20 +9079,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 84 min post first-cleavage - worm_development - WBls:0000195 - 84 min post first-cleavage Ce + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 84 min post first-cleavage + worm_development + WBls:0000195 + 84 min post first-cleavage Ce - The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9088,20 +9115,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 85 min post first-cleavage - worm_development - WBls:0000196 - 85 min post first-cleavage Ce + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 85 min post first-cleavage + worm_development + WBls:0000196 + 85 min post first-cleavage Ce - The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9124,20 +9151,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 86 min post first-cleavage - worm_development - WBls:0000197 - 86 min post first-cleavage Ce + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 86 min post first-cleavage + worm_development + WBls:0000197 + 86 min post first-cleavage Ce - The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9160,20 +9187,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 87 min post first-cleavage - worm_development - WBls:0000198 - 87 min post first-cleavage Ce + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 87 min post first-cleavage + worm_development + WBls:0000198 + 87 min post first-cleavage Ce - The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9196,20 +9223,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 88 min post first-cleavage - worm_development - WBls:0000199 - 88 min post first-cleavage Ce + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 88 min post first-cleavage + worm_development + WBls:0000199 + 88 min post first-cleavage Ce - The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9232,20 +9259,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 89 min post first-cleavage - worm_development - WBls:0000200 - 89 min post first-cleavage Ce + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 89 min post first-cleavage + worm_development + WBls:0000200 + 89 min post first-cleavage Ce - The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9268,20 +9295,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 90 min post first-cleavage - worm_development - WBls:0000201 - 90 min post first-cleavage Ce + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 90 min post first-cleavage + worm_development + WBls:0000201 + 90 min post first-cleavage Ce - The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9304,20 +9331,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 91 min post first-cleavage - worm_development - WBls:0000202 - 91 min post first-cleavage Ce + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 91 min post first-cleavage + worm_development + WBls:0000202 + 91 min post first-cleavage Ce - The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9340,20 +9367,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 92 min post first-cleavage - worm_development - WBls:0000203 - 92 min post first-cleavage Ce + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 92 min post first-cleavage + worm_development + WBls:0000203 + 92 min post first-cleavage Ce - The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9376,20 +9403,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 93 min post first-cleavage - worm_development - WBls:0000204 - 93 min post first-cleavage Ce + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 93 min post first-cleavage + worm_development + WBls:0000204 + 93 min post first-cleavage Ce - The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9412,20 +9439,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 94 min post first-cleavage - worm_development - WBls:0000205 - 94 min post first-cleavage Ce + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 94 min post first-cleavage + worm_development + WBls:0000205 + 94 min post first-cleavage Ce - The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9448,20 +9475,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 95 min post first-cleavage - worm_development - WBls:0000206 - 95 min post first-cleavage Ce + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 95 min post first-cleavage + worm_development + WBls:0000206 + 95 min post first-cleavage Ce - The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9484,20 +9511,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 96 min post first-cleavage - worm_development - WBls:0000207 - 96 min post first-cleavage Ce + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 96 min post first-cleavage + worm_development + WBls:0000207 + 96 min post first-cleavage Ce - The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9520,20 +9547,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 97 min post first-cleavage - worm_development - WBls:0000208 - 97 min post first-cleavage Ce + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 97 min post first-cleavage + worm_development + WBls:0000208 + 97 min post first-cleavage Ce - The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9556,20 +9583,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 98 min post first-cleavage - worm_development - WBls:0000209 - 98 min post first-cleavage Ce + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 98 min post first-cleavage + worm_development + WBls:0000209 + 98 min post first-cleavage Ce - The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9592,20 +9619,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 99 min post first-cleavage - worm_development - WBls:0000210 - 99 min post first-cleavage Ce + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 99 min post first-cleavage + worm_development + WBls:0000210 + 99 min post first-cleavage Ce - The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9628,20 +9655,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 100 min post first-cleavage - worm_development - WBls:0000211 - 100 min post first-cleavage Ce + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 100 min post first-cleavage + worm_development + WBls:0000211 + 100 min post first-cleavage Ce - The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9664,20 +9691,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 101 min post first-cleavage - worm_development - WBls:0000212 - 101 min post first-cleavage Ce + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 101 min post first-cleavage + worm_development + WBls:0000212 + 101 min post first-cleavage Ce - The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9700,20 +9727,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 102 min post first-cleavage - worm_development - WBls:0000213 - 102 min post first-cleavage Ce + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 102 min post first-cleavage + worm_development + WBls:0000213 + 102 min post first-cleavage Ce - The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9736,20 +9763,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 103 min post first-cleavage - worm_development - WBls:0000214 - 103 min post first-cleavage Ce + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 103 min post first-cleavage + worm_development + WBls:0000214 + 103 min post first-cleavage Ce - The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9772,20 +9799,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 104 min post first-cleavage - worm_development - WBls:0000215 - 104 min post first-cleavage Ce + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 104 min post first-cleavage + worm_development + WBls:0000215 + 104 min post first-cleavage Ce - The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9808,20 +9835,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 105 min post first-cleavage - worm_development - WBls:0000216 - 105 min post first-cleavage Ce + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 105 min post first-cleavage + worm_development + WBls:0000216 + 105 min post first-cleavage Ce - The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9844,20 +9871,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 106 min post first-cleavage - worm_development - WBls:0000217 - 106 min post first-cleavage Ce + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 106 min post first-cleavage + worm_development + WBls:0000217 + 106 min post first-cleavage Ce - The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9880,20 +9907,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 107 min post first-cleavage - worm_development - WBls:0000218 - 107 min post first-cleavage Ce + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 107 min post first-cleavage + worm_development + WBls:0000218 + 107 min post first-cleavage Ce - The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9916,20 +9943,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 108 min post first-cleavage - worm_development - WBls:0000219 - 108 min post first-cleavage Ce + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 108 min post first-cleavage + worm_development + WBls:0000219 + 108 min post first-cleavage Ce - The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9952,20 +9979,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 109 min post first-cleavage - worm_development - WBls:0000220 - 109 min post first-cleavage Ce + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 109 min post first-cleavage + worm_development + WBls:0000220 + 109 min post first-cleavage Ce - The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -9988,20 +10015,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 110 min post first-cleavage - worm_development - WBls:0000221 - 110 min post first-cleavage Ce + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 110 min post first-cleavage + worm_development + WBls:0000221 + 110 min post first-cleavage Ce - The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10024,20 +10051,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 111 min post first-cleavage - worm_development - WBls:0000222 - 111 min post first-cleavage Ce + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 111 min post first-cleavage + worm_development + WBls:0000222 + 111 min post first-cleavage Ce - The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10060,20 +10087,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 112 min post first-cleavage - worm_development - WBls:0000223 - 112 min post first-cleavage Ce + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 112 min post first-cleavage + worm_development + WBls:0000223 + 112 min post first-cleavage Ce - The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10096,20 +10123,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 113 min post first-cleavage - worm_development - WBls:0000224 - 113 min post first-cleavage Ce + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 113 min post first-cleavage + worm_development + WBls:0000224 + 113 min post first-cleavage Ce - The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10132,20 +10159,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 114 min post first-cleavage - worm_development - WBls:0000225 - 114 min post first-cleavage Ce + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 114 min post first-cleavage + worm_development + WBls:0000225 + 114 min post first-cleavage Ce - The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10168,20 +10195,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 115 min post first-cleavage - worm_development - WBls:0000226 - 115 min post first-cleavage Ce + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 115 min post first-cleavage + worm_development + WBls:0000226 + 115 min post first-cleavage Ce - The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10204,20 +10231,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 116 min post first-cleavage - worm_development - WBls:0000227 - 116 min post first-cleavage Ce + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 116 min post first-cleavage + worm_development + WBls:0000227 + 116 min post first-cleavage Ce - The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10240,20 +10267,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 117 min post first-cleavage - worm_development - WBls:0000228 - 117 min post first-cleavage Ce + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 117 min post first-cleavage + worm_development + WBls:0000228 + 117 min post first-cleavage Ce - The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10276,20 +10303,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 118 min post first-cleavage - worm_development - WBls:0000229 - 118 min post first-cleavage Ce + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 118 min post first-cleavage + worm_development + WBls:0000229 + 118 min post first-cleavage Ce - The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10312,20 +10339,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 119 min post first-cleavage - worm_development - WBls:0000230 - 119 min post first-cleavage Ce + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 119 min post first-cleavage + worm_development + WBls:0000230 + 119 min post first-cleavage Ce - The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10348,20 +10375,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 120 min post first-cleavage - worm_development - WBls:0000231 - 120 min post first-cleavage Ce + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 120 min post first-cleavage + worm_development + WBls:0000231 + 120 min post first-cleavage Ce - The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10384,20 +10411,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 121 min post first-cleavage - worm_development - WBls:0000232 - 121 min post first-cleavage Ce + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 121 min post first-cleavage + worm_development + WBls:0000232 + 121 min post first-cleavage Ce - The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10420,20 +10447,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 122 min post first-cleavage - worm_development - WBls:0000233 - 122 min post first-cleavage Ce + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 122 min post first-cleavage + worm_development + WBls:0000233 + 122 min post first-cleavage Ce - The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10456,20 +10483,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 123 min post first-cleavage - worm_development - WBls:0000234 - 123 min post first-cleavage Ce + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 123 min post first-cleavage + worm_development + WBls:0000234 + 123 min post first-cleavage Ce - The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10492,20 +10519,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 124 min post first-cleavage - worm_development - WBls:0000235 - 124 min post first-cleavage Ce + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 124 min post first-cleavage + worm_development + WBls:0000235 + 124 min post first-cleavage Ce - The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10528,20 +10555,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 125 min post first-cleavage - worm_development - WBls:0000236 - 125 min post first-cleavage Ce + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 125 min post first-cleavage + worm_development + WBls:0000236 + 125 min post first-cleavage Ce - The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10564,20 +10591,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 126 min post first-cleavage - worm_development - WBls:0000237 - 126 min post first-cleavage Ce + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 126 min post first-cleavage + worm_development + WBls:0000237 + 126 min post first-cleavage Ce - The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10600,20 +10627,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 127 min post first-cleavage - worm_development - WBls:0000238 - 127 min post first-cleavage Ce + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 127 min post first-cleavage + worm_development + WBls:0000238 + 127 min post first-cleavage Ce - The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10636,20 +10663,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 128 min post first-cleavage - worm_development - WBls:0000239 - 128 min post first-cleavage Ce + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 128 min post first-cleavage + worm_development + WBls:0000239 + 128 min post first-cleavage Ce - The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10672,20 +10699,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 129 min post first-cleavage - worm_development - WBls:0000240 - 129 min post first-cleavage Ce + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 129 min post first-cleavage + worm_development + WBls:0000240 + 129 min post first-cleavage Ce - The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10708,20 +10735,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 130 min post first-cleavage - worm_development - WBls:0000241 - 130 min post first-cleavage Ce + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 130 min post first-cleavage + worm_development + WBls:0000241 + 130 min post first-cleavage Ce - The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10744,20 +10771,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 131 min post first-cleavage - worm_development - WBls:0000242 - 131 min post first-cleavage Ce + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 131 min post first-cleavage + worm_development + WBls:0000242 + 131 min post first-cleavage Ce - The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10780,20 +10807,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 132 min post first-cleavage - worm_development - WBls:0000243 - 132 min post first-cleavage Ce + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 132 min post first-cleavage + worm_development + WBls:0000243 + 132 min post first-cleavage Ce - The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10816,20 +10843,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 133 min post first-cleavage - worm_development - WBls:0000244 - 133 min post first-cleavage Ce + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 133 min post first-cleavage + worm_development + WBls:0000244 + 133 min post first-cleavage Ce - The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10852,20 +10879,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 134 min post first-cleavage - worm_development - WBls:0000245 - 134 min post first-cleavage Ce + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 134 min post first-cleavage + worm_development + WBls:0000245 + 134 min post first-cleavage Ce - The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10888,20 +10915,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 135 min post first-cleavage - worm_development - WBls:0000246 - 135 min post first-cleavage Ce + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 135 min post first-cleavage + worm_development + WBls:0000246 + 135 min post first-cleavage Ce - The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10924,20 +10951,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 136 min post first-cleavage - worm_development - WBls:0000247 - 136 min post first-cleavage Ce + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 136 min post first-cleavage + worm_development + WBls:0000247 + 136 min post first-cleavage Ce - The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10960,20 +10987,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 137 min post first-cleavage - worm_development - WBls:0000248 - 137 min post first-cleavage Ce + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 137 min post first-cleavage + worm_development + WBls:0000248 + 137 min post first-cleavage Ce - The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -10996,20 +11023,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 138 min post first-cleavage - worm_development - WBls:0000249 - 138 min post first-cleavage Ce + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 138 min post first-cleavage + worm_development + WBls:0000249 + 138 min post first-cleavage Ce - The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11032,20 +11059,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 139 min post first-cleavage - worm_development - WBls:0000250 - 139 min post first-cleavage Ce + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 139 min post first-cleavage + worm_development + WBls:0000250 + 139 min post first-cleavage Ce - The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11068,20 +11095,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 140 min post first-cleavage - worm_development - WBls:0000251 - 140 min post first-cleavage Ce + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 140 min post first-cleavage + worm_development + WBls:0000251 + 140 min post first-cleavage Ce - The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11104,20 +11131,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 141 min post first-cleavage - worm_development - WBls:0000252 - 141 min post first-cleavage Ce + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 141 min post first-cleavage + worm_development + WBls:0000252 + 141 min post first-cleavage Ce - The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11140,20 +11167,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 142 min post first-cleavage - worm_development - WBls:0000253 - 142 min post first-cleavage Ce + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 142 min post first-cleavage + worm_development + WBls:0000253 + 142 min post first-cleavage Ce - The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11176,20 +11203,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 143 min post first-cleavage - worm_development - WBls:0000254 - 143 min post first-cleavage Ce + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 143 min post first-cleavage + worm_development + WBls:0000254 + 143 min post first-cleavage Ce - The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11212,20 +11239,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 144 min post first-cleavage - worm_development - WBls:0000255 - 144 min post first-cleavage Ce + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 144 min post first-cleavage + worm_development + WBls:0000255 + 144 min post first-cleavage Ce - The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11248,20 +11275,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 145 min post first-cleavage - worm_development - WBls:0000256 - 145 min post first-cleavage Ce + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 145 min post first-cleavage + worm_development + WBls:0000256 + 145 min post first-cleavage Ce - The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11284,20 +11311,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 146 min post first-cleavage - worm_development - WBls:0000257 - 146 min post first-cleavage Ce + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 146 min post first-cleavage + worm_development + WBls:0000257 + 146 min post first-cleavage Ce - The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11320,20 +11347,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 147 min post first-cleavage - worm_development - WBls:0000258 - 147 min post first-cleavage Ce + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 147 min post first-cleavage + worm_development + WBls:0000258 + 147 min post first-cleavage Ce - The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11356,20 +11383,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 148 min post first-cleavage - worm_development - WBls:0000259 - 148 min post first-cleavage Ce + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 148 min post first-cleavage + worm_development + WBls:0000259 + 148 min post first-cleavage Ce - The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11392,20 +11419,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 149 min post first-cleavage - worm_development - WBls:0000260 - 149 min post first-cleavage Ce + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 149 min post first-cleavage + worm_development + WBls:0000260 + 149 min post first-cleavage Ce - The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11428,20 +11455,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 150 min post first-cleavage - worm_development - WBls:0000261 - 150 min post first-cleavage Ce + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 150 min post first-cleavage + worm_development + WBls:0000261 + 150 min post first-cleavage Ce - The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11464,20 +11491,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 151 min post first-cleavage - worm_development - WBls:0000262 - 151 min post first-cleavage Ce + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 151 min post first-cleavage + worm_development + WBls:0000262 + 151 min post first-cleavage Ce - The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11500,20 +11527,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 152 min post first-cleavage - worm_development - WBls:0000263 - 152 min post first-cleavage Ce + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 152 min post first-cleavage + worm_development + WBls:0000263 + 152 min post first-cleavage Ce - The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11536,20 +11563,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 153 min post first-cleavage - worm_development - WBls:0000264 - 153 min post first-cleavage Ce + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 153 min post first-cleavage + worm_development + WBls:0000264 + 153 min post first-cleavage Ce - The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11572,20 +11599,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 154 min post first-cleavage - worm_development - WBls:0000265 - 154 min post first-cleavage Ce + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 154 min post first-cleavage + worm_development + WBls:0000265 + 154 min post first-cleavage Ce - The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11608,20 +11635,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 155 min post first-cleavage - worm_development - WBls:0000266 - 155 min post first-cleavage Ce + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 155 min post first-cleavage + worm_development + WBls:0000266 + 155 min post first-cleavage Ce - The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11644,20 +11671,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 156 min post first-cleavage - worm_development - WBls:0000267 - 156 min post first-cleavage Ce + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 156 min post first-cleavage + worm_development + WBls:0000267 + 156 min post first-cleavage Ce - The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11680,20 +11707,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 157 min post first-cleavage - worm_development - WBls:0000268 - 157 min post first-cleavage Ce + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 157 min post first-cleavage + worm_development + WBls:0000268 + 157 min post first-cleavage Ce - The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11716,20 +11743,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 158 min post first-cleavage - worm_development - WBls:0000269 - 158 min post first-cleavage Ce + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 158 min post first-cleavage + worm_development + WBls:0000269 + 158 min post first-cleavage Ce - The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11752,20 +11779,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 159 min post first-cleavage - worm_development - WBls:0000270 - 159 min post first-cleavage Ce + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 159 min post first-cleavage + worm_development + WBls:0000270 + 159 min post first-cleavage Ce - The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11788,20 +11815,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 160 min post first-cleavage - worm_development - WBls:0000271 - 160 min post first-cleavage Ce + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 160 min post first-cleavage + worm_development + WBls:0000271 + 160 min post first-cleavage Ce - The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11824,20 +11851,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 161 min post first-cleavage - worm_development - WBls:0000272 - 161 min post first-cleavage Ce + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 161 min post first-cleavage + worm_development + WBls:0000272 + 161 min post first-cleavage Ce - The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11860,20 +11887,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 162 min post first-cleavage - worm_development - WBls:0000273 - 162 min post first-cleavage Ce + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 162 min post first-cleavage + worm_development + WBls:0000273 + 162 min post first-cleavage Ce - The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11896,20 +11923,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 163 min post first-cleavage - worm_development - WBls:0000274 - 163 min post first-cleavage Ce + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 163 min post first-cleavage + worm_development + WBls:0000274 + 163 min post first-cleavage Ce - The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11932,20 +11959,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 164 min post first-cleavage - worm_development - WBls:0000275 - 164 min post first-cleavage Ce + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 164 min post first-cleavage + worm_development + WBls:0000275 + 164 min post first-cleavage Ce - The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -11968,20 +11995,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 165 min post first-cleavage - worm_development - WBls:0000276 - 165 min post first-cleavage Ce + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 165 min post first-cleavage + worm_development + WBls:0000276 + 165 min post first-cleavage Ce - The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12004,20 +12031,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 166 min post first-cleavage - worm_development - WBls:0000277 - 166 min post first-cleavage Ce + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 166 min post first-cleavage + worm_development + WBls:0000277 + 166 min post first-cleavage Ce - The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12040,20 +12067,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 167 min post first-cleavage - worm_development - WBls:0000278 - 167 min post first-cleavage Ce + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 167 min post first-cleavage + worm_development + WBls:0000278 + 167 min post first-cleavage Ce - The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12076,20 +12103,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 168 min post first-cleavage - worm_development - WBls:0000279 - 168 min post first-cleavage Ce + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 168 min post first-cleavage + worm_development + WBls:0000279 + 168 min post first-cleavage Ce - The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12112,20 +12139,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 169 min post first-cleavage - worm_development - WBls:0000280 - 169 min post first-cleavage Ce + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 169 min post first-cleavage + worm_development + WBls:0000280 + 169 min post first-cleavage Ce - The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12148,20 +12175,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 170 min post first-cleavage - worm_development - WBls:0000281 - 170 min post first-cleavage Ce + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 170 min post first-cleavage + worm_development + WBls:0000281 + 170 min post first-cleavage Ce - The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12184,20 +12211,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 171 min post first-cleavage - worm_development - WBls:0000282 - 171 min post first-cleavage Ce + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 171 min post first-cleavage + worm_development + WBls:0000282 + 171 min post first-cleavage Ce - The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12220,20 +12247,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 172 min post first-cleavage - worm_development - WBls:0000283 - 172 min post first-cleavage Ce + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 172 min post first-cleavage + worm_development + WBls:0000283 + 172 min post first-cleavage Ce - The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12256,20 +12283,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 173 min post first-cleavage - worm_development - WBls:0000284 - 173 min post first-cleavage Ce + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 173 min post first-cleavage + worm_development + WBls:0000284 + 173 min post first-cleavage Ce - The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12292,20 +12319,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 174 min post first-cleavage - worm_development - WBls:0000285 - 174 min post first-cleavage Ce + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 174 min post first-cleavage + worm_development + WBls:0000285 + 174 min post first-cleavage Ce - The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12328,20 +12355,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 175 min post first-cleavage - worm_development - WBls:0000286 - 175 min post first-cleavage Ce + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 175 min post first-cleavage + worm_development + WBls:0000286 + 175 min post first-cleavage Ce - The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12364,20 +12391,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 176 min post first-cleavage - worm_development - WBls:0000287 - 176 min post first-cleavage Ce + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 176 min post first-cleavage + worm_development + WBls:0000287 + 176 min post first-cleavage Ce - The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12400,20 +12427,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 177 min post first-cleavage - worm_development - WBls:0000288 - 177 min post first-cleavage Ce + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 177 min post first-cleavage + worm_development + WBls:0000288 + 177 min post first-cleavage Ce - The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12436,20 +12463,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 178 min post first-cleavage - worm_development - WBls:0000289 - 178 min post first-cleavage Ce + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 178 min post first-cleavage + worm_development + WBls:0000289 + 178 min post first-cleavage Ce - The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12472,20 +12499,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 179 min post first-cleavage - worm_development - WBls:0000290 - 179 min post first-cleavage Ce + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 179 min post first-cleavage + worm_development + WBls:0000290 + 179 min post first-cleavage Ce - The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12508,20 +12535,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 180 min post first-cleavage - worm_development - WBls:0000291 - 180 min post first-cleavage Ce + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 180 min post first-cleavage + worm_development + WBls:0000291 + 180 min post first-cleavage Ce - The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12544,20 +12571,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 181 min post first-cleavage - worm_development - WBls:0000292 - 181 min post first-cleavage Ce + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 181 min post first-cleavage + worm_development + WBls:0000292 + 181 min post first-cleavage Ce - The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12580,20 +12607,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 182 min post first-cleavage - worm_development - WBls:0000293 - 182 min post first-cleavage Ce + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 182 min post first-cleavage + worm_development + WBls:0000293 + 182 min post first-cleavage Ce - The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12616,20 +12643,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 183 min post first-cleavage - worm_development - WBls:0000294 - 183 min post first-cleavage Ce + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 183 min post first-cleavage + worm_development + WBls:0000294 + 183 min post first-cleavage Ce - The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12652,20 +12679,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 184 min post first-cleavage - worm_development - WBls:0000295 - 184 min post first-cleavage Ce + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 184 min post first-cleavage + worm_development + WBls:0000295 + 184 min post first-cleavage Ce - The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12688,20 +12715,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 185 min post first-cleavage - worm_development - WBls:0000296 - 185 min post first-cleavage Ce + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 185 min post first-cleavage + worm_development + WBls:0000296 + 185 min post first-cleavage Ce - The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12724,20 +12751,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 186 min post first-cleavage - worm_development - WBls:0000297 - 186 min post first-cleavage Ce + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 186 min post first-cleavage + worm_development + WBls:0000297 + 186 min post first-cleavage Ce - The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12760,20 +12787,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 187 min post first-cleavage - worm_development - WBls:0000298 - 187 min post first-cleavage Ce + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 187 min post first-cleavage + worm_development + WBls:0000298 + 187 min post first-cleavage Ce - The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12796,20 +12823,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 188 min post first-cleavage - worm_development - WBls:0000299 - 188 min post first-cleavage Ce + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 188 min post first-cleavage + worm_development + WBls:0000299 + 188 min post first-cleavage Ce - The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12832,20 +12859,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 189 min post first-cleavage - worm_development - WBls:0000300 - 189 min post first-cleavage Ce + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 189 min post first-cleavage + worm_development + WBls:0000300 + 189 min post first-cleavage Ce - The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12868,20 +12895,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 190 min post first-cleavage - worm_development - WBls:0000301 - 190 min post first-cleavage Ce + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 190 min post first-cleavage + worm_development + WBls:0000301 + 190 min post first-cleavage Ce - The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12904,20 +12931,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 191 min post first-cleavage - worm_development - WBls:0000302 - 191 min post first-cleavage Ce + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 191 min post first-cleavage + worm_development + WBls:0000302 + 191 min post first-cleavage Ce - The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12940,20 +12967,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 192 min post first-cleavage - worm_development - WBls:0000303 - 192 min post first-cleavage Ce + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 192 min post first-cleavage + worm_development + WBls:0000303 + 192 min post first-cleavage Ce - The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -12976,20 +13003,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 193 min post first-cleavage - worm_development - WBls:0000304 - 193 min post first-cleavage Ce + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 193 min post first-cleavage + worm_development + WBls:0000304 + 193 min post first-cleavage Ce - The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13012,20 +13039,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 194 min post first-cleavage - worm_development - WBls:0000305 - 194 min post first-cleavage Ce + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 194 min post first-cleavage + worm_development + WBls:0000305 + 194 min post first-cleavage Ce - The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13048,20 +13075,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 195 min post first-cleavage - worm_development - WBls:0000306 - 195 min post first-cleavage Ce + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 195 min post first-cleavage + worm_development + WBls:0000306 + 195 min post first-cleavage Ce - The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13084,20 +13111,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 196 min post first-cleavage - worm_development - WBls:0000307 - 196 min post first-cleavage Ce + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 196 min post first-cleavage + worm_development + WBls:0000307 + 196 min post first-cleavage Ce - The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13120,20 +13147,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 197 min post first-cleavage - worm_development - WBls:0000308 - 197 min post first-cleavage Ce + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 197 min post first-cleavage + worm_development + WBls:0000308 + 197 min post first-cleavage Ce - The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13156,20 +13183,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 198 min post first-cleavage - worm_development - WBls:0000309 - 198 min post first-cleavage Ce + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 198 min post first-cleavage + worm_development + WBls:0000309 + 198 min post first-cleavage Ce - The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13192,20 +13219,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 199 min post first-cleavage - worm_development - WBls:0000310 - 199 min post first-cleavage Ce + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 199 min post first-cleavage + worm_development + WBls:0000310 + 199 min post first-cleavage Ce - The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13228,20 +13255,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 200 min post first-cleavage - worm_development - WBls:0000311 - 200 min post first-cleavage Ce + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 200 min post first-cleavage + worm_development + WBls:0000311 + 200 min post first-cleavage Ce - The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13264,20 +13291,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 201 min post first-cleavage - worm_development - WBls:0000312 - 201 min post first-cleavage Ce + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 201 min post first-cleavage + worm_development + WBls:0000312 + 201 min post first-cleavage Ce - The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13300,20 +13327,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 202 min post first-cleavage - worm_development - WBls:0000313 - 202 min post first-cleavage Ce + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 202 min post first-cleavage + worm_development + WBls:0000313 + 202 min post first-cleavage Ce - The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13336,20 +13363,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 203 min post first-cleavage - worm_development - WBls:0000314 - 203 min post first-cleavage Ce + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 203 min post first-cleavage + worm_development + WBls:0000314 + 203 min post first-cleavage Ce - The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13372,20 +13399,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 204 min post first-cleavage - worm_development - WBls:0000315 - 204 min post first-cleavage Ce + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 204 min post first-cleavage + worm_development + WBls:0000315 + 204 min post first-cleavage Ce - The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13408,20 +13435,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 205 min post first-cleavage - worm_development - WBls:0000316 - 205 min post first-cleavage Ce + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 205 min post first-cleavage + worm_development + WBls:0000316 + 205 min post first-cleavage Ce - The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13444,20 +13471,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 206 min post first-cleavage - worm_development - WBls:0000317 - 206 min post first-cleavage Ce + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 206 min post first-cleavage + worm_development + WBls:0000317 + 206 min post first-cleavage Ce - The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13480,20 +13507,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 207 min post first-cleavage - worm_development - WBls:0000318 - 207 min post first-cleavage Ce + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 207 min post first-cleavage + worm_development + WBls:0000318 + 207 min post first-cleavage Ce - The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13516,20 +13543,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 208 min post first-cleavage - worm_development - WBls:0000319 - 208 min post first-cleavage Ce + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 208 min post first-cleavage + worm_development + WBls:0000319 + 208 min post first-cleavage Ce - The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13552,20 +13579,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 209 min post first-cleavage - worm_development - WBls:0000320 - 209 min post first-cleavage Ce + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 209 min post first-cleavage + worm_development + WBls:0000320 + 209 min post first-cleavage Ce - The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13588,20 +13615,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 210 min post first-cleavage - worm_development - WBls:0000321 - 210 min post first-cleavage Ce + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 210 min post first-cleavage + worm_development + WBls:0000321 + 210 min post first-cleavage Ce - The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13624,20 +13651,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 211 min post first-cleavage - worm_development - WBls:0000322 - 211 min post first-cleavage Ce + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 211 min post first-cleavage + worm_development + WBls:0000322 + 211 min post first-cleavage Ce - The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13660,20 +13687,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 212 min post first-cleavage - worm_development - WBls:0000323 - 212 min post first-cleavage Ce + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 212 min post first-cleavage + worm_development + WBls:0000323 + 212 min post first-cleavage Ce - The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13696,20 +13723,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 213 min post first-cleavage - worm_development - WBls:0000324 - 213 min post first-cleavage Ce + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 213 min post first-cleavage + worm_development + WBls:0000324 + 213 min post first-cleavage Ce - The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13732,20 +13759,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 214 min post first-cleavage - worm_development - WBls:0000325 - 214 min post first-cleavage Ce + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 214 min post first-cleavage + worm_development + WBls:0000325 + 214 min post first-cleavage Ce - The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13768,20 +13795,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 215 min post first-cleavage - worm_development - WBls:0000326 - 215 min post first-cleavage Ce + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 215 min post first-cleavage + worm_development + WBls:0000326 + 215 min post first-cleavage Ce - The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13804,20 +13831,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 216 min post first-cleavage - worm_development - WBls:0000327 - 216 min post first-cleavage Ce + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 216 min post first-cleavage + worm_development + WBls:0000327 + 216 min post first-cleavage Ce - The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13840,20 +13867,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 217 min post first-cleavage - worm_development - WBls:0000328 - 217 min post first-cleavage Ce + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 217 min post first-cleavage + worm_development + WBls:0000328 + 217 min post first-cleavage Ce - The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13876,20 +13903,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 218 min post first-cleavage - worm_development - WBls:0000329 - 218 min post first-cleavage Ce + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 218 min post first-cleavage + worm_development + WBls:0000329 + 218 min post first-cleavage Ce - The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13912,20 +13939,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 219 min post first-cleavage - worm_development - WBls:0000330 - 219 min post first-cleavage Ce + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 219 min post first-cleavage + worm_development + WBls:0000330 + 219 min post first-cleavage Ce - The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13948,20 +13975,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 220 min post first-cleavage - worm_development - WBls:0000331 - 220 min post first-cleavage Ce + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 220 min post first-cleavage + worm_development + WBls:0000331 + 220 min post first-cleavage Ce - The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -13984,20 +14011,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 221 min post first-cleavage - worm_development - WBls:0000332 - 221 min post first-cleavage Ce + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 221 min post first-cleavage + worm_development + WBls:0000332 + 221 min post first-cleavage Ce - The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14020,20 +14047,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 222 min post first-cleavage - worm_development - WBls:0000333 - 222 min post first-cleavage Ce + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 222 min post first-cleavage + worm_development + WBls:0000333 + 222 min post first-cleavage Ce - The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14056,20 +14083,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 223 min post first-cleavage - worm_development - WBls:0000334 - 223 min post first-cleavage Ce + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 223 min post first-cleavage + worm_development + WBls:0000334 + 223 min post first-cleavage Ce - The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14092,20 +14119,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 224 min post first-cleavage - worm_development - WBls:0000335 - 224 min post first-cleavage Ce + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 224 min post first-cleavage + worm_development + WBls:0000335 + 224 min post first-cleavage Ce - The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14128,20 +14155,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 225 min post first-cleavage - worm_development - WBls:0000336 - 225 min post first-cleavage Ce + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 225 min post first-cleavage + worm_development + WBls:0000336 + 225 min post first-cleavage Ce - The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14164,20 +14191,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 226 min post first-cleavage - worm_development - WBls:0000337 - 226 min post first-cleavage Ce + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 226 min post first-cleavage + worm_development + WBls:0000337 + 226 min post first-cleavage Ce - The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14200,20 +14227,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 227 min post first-cleavage - worm_development - WBls:0000338 - 227 min post first-cleavage Ce + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 227 min post first-cleavage + worm_development + WBls:0000338 + 227 min post first-cleavage Ce - The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14236,20 +14263,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 228 min post first-cleavage - worm_development - WBls:0000339 - 228 min post first-cleavage Ce + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 228 min post first-cleavage + worm_development + WBls:0000339 + 228 min post first-cleavage Ce - The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14272,20 +14299,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 229 min post first-cleavage - worm_development - WBls:0000340 - 229 min post first-cleavage Ce + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 229 min post first-cleavage + worm_development + WBls:0000340 + 229 min post first-cleavage Ce - The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14308,20 +14335,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 230 min post first-cleavage - worm_development - WBls:0000341 - 230 min post first-cleavage Ce + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 230 min post first-cleavage + worm_development + WBls:0000341 + 230 min post first-cleavage Ce - The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14344,20 +14371,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 231 min post first-cleavage - worm_development - WBls:0000342 - 231 min post first-cleavage Ce + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 231 min post first-cleavage + worm_development + WBls:0000342 + 231 min post first-cleavage Ce - The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14380,20 +14407,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 232 min post first-cleavage - worm_development - WBls:0000343 - 232 min post first-cleavage Ce + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 232 min post first-cleavage + worm_development + WBls:0000343 + 232 min post first-cleavage Ce - The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14416,20 +14443,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 233 min post first-cleavage - worm_development - WBls:0000344 - 233 min post first-cleavage Ce + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 233 min post first-cleavage + worm_development + WBls:0000344 + 233 min post first-cleavage Ce - The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14452,20 +14479,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 234 min post first-cleavage - worm_development - WBls:0000345 - 234 min post first-cleavage Ce + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 234 min post first-cleavage + worm_development + WBls:0000345 + 234 min post first-cleavage Ce - The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14488,20 +14515,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 235 min post first-cleavage - worm_development - WBls:0000346 - 235 min post first-cleavage Ce + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 235 min post first-cleavage + worm_development + WBls:0000346 + 235 min post first-cleavage Ce - The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14524,20 +14551,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 236 min post first-cleavage - worm_development - WBls:0000347 - 236 min post first-cleavage Ce + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 236 min post first-cleavage + worm_development + WBls:0000347 + 236 min post first-cleavage Ce - The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14560,20 +14587,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 237 min post first-cleavage - worm_development - WBls:0000348 - 237 min post first-cleavage Ce + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 237 min post first-cleavage + worm_development + WBls:0000348 + 237 min post first-cleavage Ce - The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14596,20 +14623,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 238 min post first-cleavage - worm_development - WBls:0000349 - 238 min post first-cleavage Ce + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 238 min post first-cleavage + worm_development + WBls:0000349 + 238 min post first-cleavage Ce - The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14632,20 +14659,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 239 min post first-cleavage - worm_development - WBls:0000350 - 239 min post first-cleavage Ce + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 239 min post first-cleavage + worm_development + WBls:0000350 + 239 min post first-cleavage Ce - The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14668,20 +14695,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 240 min post first-cleavage - worm_development - WBls:0000351 - 240 min post first-cleavage Ce + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 240 min post first-cleavage + worm_development + WBls:0000351 + 240 min post first-cleavage Ce - The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14704,20 +14731,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 241 min post first-cleavage - worm_development - WBls:0000352 - 241 min post first-cleavage Ce + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 241 min post first-cleavage + worm_development + WBls:0000352 + 241 min post first-cleavage Ce - The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14740,20 +14767,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 242 min post first-cleavage - worm_development - WBls:0000353 - 242 min post first-cleavage Ce + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 242 min post first-cleavage + worm_development + WBls:0000353 + 242 min post first-cleavage Ce - The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14776,20 +14803,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 243 min post first-cleavage - worm_development - WBls:0000354 - 243 min post first-cleavage Ce + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 243 min post first-cleavage + worm_development + WBls:0000354 + 243 min post first-cleavage Ce - The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14812,20 +14839,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 244 min post first-cleavage - worm_development - WBls:0000355 - 244 min post first-cleavage Ce + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 244 min post first-cleavage + worm_development + WBls:0000355 + 244 min post first-cleavage Ce - The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14848,20 +14875,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 245 min post first-cleavage - worm_development - WBls:0000356 - 245 min post first-cleavage Ce + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 245 min post first-cleavage + worm_development + WBls:0000356 + 245 min post first-cleavage Ce - The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14884,20 +14911,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 246 min post first-cleavage - worm_development - WBls:0000357 - 246 min post first-cleavage Ce + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 246 min post first-cleavage + worm_development + WBls:0000357 + 246 min post first-cleavage Ce - The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14920,20 +14947,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 247 min post first-cleavage - worm_development - WBls:0000358 - 247 min post first-cleavage Ce + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 247 min post first-cleavage + worm_development + WBls:0000358 + 247 min post first-cleavage Ce - The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14956,20 +14983,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 248 min post first-cleavage - worm_development - WBls:0000359 - 248 min post first-cleavage Ce + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 248 min post first-cleavage + worm_development + WBls:0000359 + 248 min post first-cleavage Ce - The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -14992,20 +15019,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 249 min post first-cleavage - worm_development - WBls:0000360 - 249 min post first-cleavage Ce + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 249 min post first-cleavage + worm_development + WBls:0000360 + 249 min post first-cleavage Ce - The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15028,20 +15055,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 250 min post first-cleavage - worm_development - WBls:0000361 - 250 min post first-cleavage Ce + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 250 min post first-cleavage + worm_development + WBls:0000361 + 250 min post first-cleavage Ce - The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15064,20 +15091,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 251 min post first-cleavage - worm_development - WBls:0000362 - 251 min post first-cleavage Ce + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 251 min post first-cleavage + worm_development + WBls:0000362 + 251 min post first-cleavage Ce - The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15100,20 +15127,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 252 min post first-cleavage - worm_development - WBls:0000363 - 252 min post first-cleavage Ce + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 252 min post first-cleavage + worm_development + WBls:0000363 + 252 min post first-cleavage Ce - The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15136,20 +15163,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 253 min post first-cleavage - worm_development - WBls:0000364 - 253 min post first-cleavage Ce + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 253 min post first-cleavage + worm_development + WBls:0000364 + 253 min post first-cleavage Ce - The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15172,20 +15199,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 254 min post first-cleavage - worm_development - WBls:0000365 - 254 min post first-cleavage Ce + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 254 min post first-cleavage + worm_development + WBls:0000365 + 254 min post first-cleavage Ce - The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15208,20 +15235,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 255 min post first-cleavage - worm_development - WBls:0000366 - 255 min post first-cleavage Ce + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 255 min post first-cleavage + worm_development + WBls:0000366 + 255 min post first-cleavage Ce - The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15244,20 +15271,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 256 min post first-cleavage - worm_development - WBls:0000367 - 256 min post first-cleavage Ce + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 256 min post first-cleavage + worm_development + WBls:0000367 + 256 min post first-cleavage Ce - The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15280,20 +15307,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 257 min post first-cleavage - worm_development - WBls:0000368 - 257 min post first-cleavage Ce + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 257 min post first-cleavage + worm_development + WBls:0000368 + 257 min post first-cleavage Ce - The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15316,20 +15343,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 258 min post first-cleavage - worm_development - WBls:0000369 - 258 min post first-cleavage Ce + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 258 min post first-cleavage + worm_development + WBls:0000369 + 258 min post first-cleavage Ce - The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15352,20 +15379,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 259 min post first-cleavage - worm_development - WBls:0000370 - 259 min post first-cleavage Ce + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 259 min post first-cleavage + worm_development + WBls:0000370 + 259 min post first-cleavage Ce - The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15388,20 +15415,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 260 min post first-cleavage - worm_development - WBls:0000371 - 260 min post first-cleavage Ce + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 260 min post first-cleavage + worm_development + WBls:0000371 + 260 min post first-cleavage Ce - The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15424,20 +15451,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 261 min post first-cleavage - worm_development - WBls:0000372 - 261 min post first-cleavage Ce + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 261 min post first-cleavage + worm_development + WBls:0000372 + 261 min post first-cleavage Ce - The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15460,20 +15487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 262 min post first-cleavage - worm_development - WBls:0000373 - 262 min post first-cleavage Ce + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 262 min post first-cleavage + worm_development + WBls:0000373 + 262 min post first-cleavage Ce - The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15496,20 +15523,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 263 min post first-cleavage - worm_development - WBls:0000374 - 263 min post first-cleavage Ce + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 263 min post first-cleavage + worm_development + WBls:0000374 + 263 min post first-cleavage Ce - The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15532,20 +15559,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 264 min post first-cleavage - worm_development - WBls:0000375 - 264 min post first-cleavage Ce + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 264 min post first-cleavage + worm_development + WBls:0000375 + 264 min post first-cleavage Ce - The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15568,20 +15595,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 265 min post first-cleavage - worm_development - WBls:0000376 - 265 min post first-cleavage Ce + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 265 min post first-cleavage + worm_development + WBls:0000376 + 265 min post first-cleavage Ce - The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15604,20 +15631,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 266 min post first-cleavage - worm_development - WBls:0000377 - 266 min post first-cleavage Ce + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 266 min post first-cleavage + worm_development + WBls:0000377 + 266 min post first-cleavage Ce - The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15640,20 +15667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 267 min post first-cleavage - worm_development - WBls:0000378 - 267 min post first-cleavage Ce + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 267 min post first-cleavage + worm_development + WBls:0000378 + 267 min post first-cleavage Ce - The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15676,20 +15703,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 268 min post first-cleavage - worm_development - WBls:0000379 - 268 min post first-cleavage Ce + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 268 min post first-cleavage + worm_development + WBls:0000379 + 268 min post first-cleavage Ce - The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15712,20 +15739,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 269 min post first-cleavage - worm_development - WBls:0000380 - 269 min post first-cleavage Ce + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 269 min post first-cleavage + worm_development + WBls:0000380 + 269 min post first-cleavage Ce - The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15748,20 +15775,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 270 min post first-cleavage - worm_development - WBls:0000381 - 270 min post first-cleavage Ce + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 270 min post first-cleavage + worm_development + WBls:0000381 + 270 min post first-cleavage Ce - The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15784,20 +15811,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 271 min post first-cleavage - worm_development - WBls:0000382 - 271 min post first-cleavage Ce + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 271 min post first-cleavage + worm_development + WBls:0000382 + 271 min post first-cleavage Ce - The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15820,20 +15847,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 272 min post first-cleavage - worm_development - WBls:0000383 - 272 min post first-cleavage Ce + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 272 min post first-cleavage + worm_development + WBls:0000383 + 272 min post first-cleavage Ce - The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15856,20 +15883,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 273 min post first-cleavage - worm_development - WBls:0000384 - 273 min post first-cleavage Ce + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 273 min post first-cleavage + worm_development + WBls:0000384 + 273 min post first-cleavage Ce - The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15892,20 +15919,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 274 min post first-cleavage - worm_development - WBls:0000385 - 274 min post first-cleavage Ce + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 274 min post first-cleavage + worm_development + WBls:0000385 + 274 min post first-cleavage Ce - The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15928,20 +15955,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 275 min post first-cleavage - worm_development - WBls:0000386 - 275 min post first-cleavage Ce + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 275 min post first-cleavage + worm_development + WBls:0000386 + 275 min post first-cleavage Ce - The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -15964,20 +15991,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 276 min post first-cleavage - worm_development - WBls:0000387 - 276 min post first-cleavage Ce + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 276 min post first-cleavage + worm_development + WBls:0000387 + 276 min post first-cleavage Ce - The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16000,20 +16027,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 277 min post first-cleavage - worm_development - WBls:0000388 - 277 min post first-cleavage Ce + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 277 min post first-cleavage + worm_development + WBls:0000388 + 277 min post first-cleavage Ce - The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16036,20 +16063,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 278 min post first-cleavage - worm_development - WBls:0000389 - 278 min post first-cleavage Ce + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 278 min post first-cleavage + worm_development + WBls:0000389 + 278 min post first-cleavage Ce - The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16072,20 +16099,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 279 min post first-cleavage - worm_development - WBls:0000390 - 279 min post first-cleavage Ce + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 279 min post first-cleavage + worm_development + WBls:0000390 + 279 min post first-cleavage Ce - The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16108,20 +16135,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 280 min post first-cleavage - worm_development - WBls:0000391 - 280 min post first-cleavage Ce + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 280 min post first-cleavage + worm_development + WBls:0000391 + 280 min post first-cleavage Ce - The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16144,20 +16171,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 281 min post first-cleavage - worm_development - WBls:0000392 - 281 min post first-cleavage Ce + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 281 min post first-cleavage + worm_development + WBls:0000392 + 281 min post first-cleavage Ce - The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16180,20 +16207,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 282 min post first-cleavage - worm_development - WBls:0000393 - 282 min post first-cleavage Ce + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 282 min post first-cleavage + worm_development + WBls:0000393 + 282 min post first-cleavage Ce - The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16216,20 +16243,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 283 min post first-cleavage - worm_development - WBls:0000394 - 283 min post first-cleavage Ce + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 283 min post first-cleavage + worm_development + WBls:0000394 + 283 min post first-cleavage Ce - The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16252,20 +16279,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 284 min post first-cleavage - worm_development - WBls:0000395 - 284 min post first-cleavage Ce + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 284 min post first-cleavage + worm_development + WBls:0000395 + 284 min post first-cleavage Ce - The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16288,20 +16315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 285 min post first-cleavage - worm_development - WBls:0000396 - 285 min post first-cleavage Ce + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 285 min post first-cleavage + worm_development + WBls:0000396 + 285 min post first-cleavage Ce - The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16324,20 +16351,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 286 min post first-cleavage - worm_development - WBls:0000397 - 286 min post first-cleavage Ce + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 286 min post first-cleavage + worm_development + WBls:0000397 + 286 min post first-cleavage Ce - The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16360,20 +16387,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 287 min post first-cleavage - worm_development - WBls:0000398 - 287 min post first-cleavage Ce + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 287 min post first-cleavage + worm_development + WBls:0000398 + 287 min post first-cleavage Ce - The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16396,20 +16423,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 288 min post first-cleavage - worm_development - WBls:0000399 - 288 min post first-cleavage Ce + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 288 min post first-cleavage + worm_development + WBls:0000399 + 288 min post first-cleavage Ce - The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16432,20 +16459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 289 min post first-cleavage - worm_development - WBls:0000400 - 289 min post first-cleavage Ce + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 289 min post first-cleavage + worm_development + WBls:0000400 + 289 min post first-cleavage Ce - The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16468,20 +16495,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 290 min post first-cleavage - worm_development - WBls:0000401 - 290 min post first-cleavage Ce + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 290 min post first-cleavage + worm_development + WBls:0000401 + 290 min post first-cleavage Ce - The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16504,20 +16531,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 291 min post first-cleavage - worm_development - WBls:0000402 - 291 min post first-cleavage Ce + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 291 min post first-cleavage + worm_development + WBls:0000402 + 291 min post first-cleavage Ce - The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16540,20 +16567,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 292 min post first-cleavage - worm_development - WBls:0000403 - 292 min post first-cleavage Ce + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 292 min post first-cleavage + worm_development + WBls:0000403 + 292 min post first-cleavage Ce - The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16576,20 +16603,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 293 min post first-cleavage - worm_development - WBls:0000404 - 293 min post first-cleavage Ce + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 293 min post first-cleavage + worm_development + WBls:0000404 + 293 min post first-cleavage Ce - The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16612,20 +16639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 294 min post first-cleavage - worm_development - WBls:0000405 - 294 min post first-cleavage Ce + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 294 min post first-cleavage + worm_development + WBls:0000405 + 294 min post first-cleavage Ce - The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16648,20 +16675,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 295 min post first-cleavage - worm_development - WBls:0000406 - 295 min post first-cleavage Ce + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 295 min post first-cleavage + worm_development + WBls:0000406 + 295 min post first-cleavage Ce - The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16684,20 +16711,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 296 min post first-cleavage - worm_development - WBls:0000407 - 296 min post first-cleavage Ce + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 296 min post first-cleavage + worm_development + WBls:0000407 + 296 min post first-cleavage Ce - The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16720,20 +16747,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 297 min post first-cleavage - worm_development - WBls:0000408 - 297 min post first-cleavage Ce + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 297 min post first-cleavage + worm_development + WBls:0000408 + 297 min post first-cleavage Ce - The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16756,20 +16783,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 298 min post first-cleavage - worm_development - WBls:0000409 - 298 min post first-cleavage Ce + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 298 min post first-cleavage + worm_development + WBls:0000409 + 298 min post first-cleavage Ce - The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16792,20 +16819,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 299 min post first-cleavage - worm_development - WBls:0000410 - 299 min post first-cleavage Ce + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 299 min post first-cleavage + worm_development + WBls:0000410 + 299 min post first-cleavage Ce - The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16828,20 +16855,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 300 min post first-cleavage - worm_development - WBls:0000411 - 300 min post first-cleavage Ce + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 300 min post first-cleavage + worm_development + WBls:0000411 + 300 min post first-cleavage Ce - The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16864,20 +16891,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 301 min post first-cleavage - worm_development - WBls:0000412 - 301 min post first-cleavage Ce + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 301 min post first-cleavage + worm_development + WBls:0000412 + 301 min post first-cleavage Ce - The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16900,20 +16927,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 302 min post first-cleavage - worm_development - WBls:0000413 - 302 min post first-cleavage Ce + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 302 min post first-cleavage + worm_development + WBls:0000413 + 302 min post first-cleavage Ce - The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16936,20 +16963,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 303 min post first-cleavage - worm_development - WBls:0000414 - 303 min post first-cleavage Ce + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 303 min post first-cleavage + worm_development + WBls:0000414 + 303 min post first-cleavage Ce - The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -16972,20 +16999,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 304 min post first-cleavage - worm_development - WBls:0000415 - 304 min post first-cleavage Ce + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 304 min post first-cleavage + worm_development + WBls:0000415 + 304 min post first-cleavage Ce - The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17008,20 +17035,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 305 min post first-cleavage - worm_development - WBls:0000416 - 305 min post first-cleavage Ce + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 305 min post first-cleavage + worm_development + WBls:0000416 + 305 min post first-cleavage Ce - The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17044,20 +17071,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 306 min post first-cleavage - worm_development - WBls:0000417 - 306 min post first-cleavage Ce + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 306 min post first-cleavage + worm_development + WBls:0000417 + 306 min post first-cleavage Ce - The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17080,20 +17107,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 307 min post first-cleavage - worm_development - WBls:0000418 - 307 min post first-cleavage Ce + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 307 min post first-cleavage + worm_development + WBls:0000418 + 307 min post first-cleavage Ce - The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17116,20 +17143,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 308 min post first-cleavage - worm_development - WBls:0000419 - 308 min post first-cleavage Ce + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 308 min post first-cleavage + worm_development + WBls:0000419 + 308 min post first-cleavage Ce - The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17152,20 +17179,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 309 min post first-cleavage - worm_development - WBls:0000420 - 309 min post first-cleavage Ce + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 309 min post first-cleavage + worm_development + WBls:0000420 + 309 min post first-cleavage Ce - The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17188,20 +17215,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 310 min post first-cleavage - worm_development - WBls:0000421 - 310 min post first-cleavage Ce + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 310 min post first-cleavage + worm_development + WBls:0000421 + 310 min post first-cleavage Ce - The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17224,20 +17251,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 311 min post first-cleavage - worm_development - WBls:0000422 - 311 min post first-cleavage Ce + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 311 min post first-cleavage + worm_development + WBls:0000422 + 311 min post first-cleavage Ce - The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17260,20 +17287,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 312 min post first-cleavage - worm_development - WBls:0000423 - 312 min post first-cleavage Ce + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 312 min post first-cleavage + worm_development + WBls:0000423 + 312 min post first-cleavage Ce - The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17296,20 +17323,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 313 min post first-cleavage - worm_development - WBls:0000424 - 313 min post first-cleavage Ce + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 313 min post first-cleavage + worm_development + WBls:0000424 + 313 min post first-cleavage Ce - The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17332,20 +17359,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 314 min post first-cleavage - worm_development - WBls:0000425 - 314 min post first-cleavage Ce + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 314 min post first-cleavage + worm_development + WBls:0000425 + 314 min post first-cleavage Ce - The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17368,20 +17395,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 315 min post first-cleavage - worm_development - WBls:0000426 - 315 min post first-cleavage Ce + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 315 min post first-cleavage + worm_development + WBls:0000426 + 315 min post first-cleavage Ce - The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17404,20 +17431,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 316 min post first-cleavage - worm_development - WBls:0000427 - 316 min post first-cleavage Ce + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 316 min post first-cleavage + worm_development + WBls:0000427 + 316 min post first-cleavage Ce - The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17440,20 +17467,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 317 min post first-cleavage - worm_development - WBls:0000428 - 317 min post first-cleavage Ce + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 317 min post first-cleavage + worm_development + WBls:0000428 + 317 min post first-cleavage Ce - The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17476,20 +17503,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 318 min post first-cleavage - worm_development - WBls:0000429 - 318 min post first-cleavage Ce + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 318 min post first-cleavage + worm_development + WBls:0000429 + 318 min post first-cleavage Ce - The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17512,20 +17539,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 319 min post first-cleavage - worm_development - WBls:0000430 - 319 min post first-cleavage Ce + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 319 min post first-cleavage + worm_development + WBls:0000430 + 319 min post first-cleavage Ce - The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17548,20 +17575,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 320 min post first-cleavage - worm_development - WBls:0000431 - 320 min post first-cleavage Ce + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 320 min post first-cleavage + worm_development + WBls:0000431 + 320 min post first-cleavage Ce - The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17584,20 +17611,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 321 min post first-cleavage - worm_development - WBls:0000432 - 321 min post first-cleavage Ce + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 321 min post first-cleavage + worm_development + WBls:0000432 + 321 min post first-cleavage Ce - The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17620,20 +17647,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 322 min post first-cleavage - worm_development - WBls:0000433 - 322 min post first-cleavage Ce + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 322 min post first-cleavage + worm_development + WBls:0000433 + 322 min post first-cleavage Ce - The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17656,20 +17683,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 323 min post first-cleavage - worm_development - WBls:0000434 - 323 min post first-cleavage Ce + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 323 min post first-cleavage + worm_development + WBls:0000434 + 323 min post first-cleavage Ce - The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17692,20 +17719,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 324 min post first-cleavage - worm_development - WBls:0000435 - 324 min post first-cleavage Ce + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 324 min post first-cleavage + worm_development + WBls:0000435 + 324 min post first-cleavage Ce - The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17728,20 +17755,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 325 min post first-cleavage - worm_development - WBls:0000436 - 325 min post first-cleavage Ce + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 325 min post first-cleavage + worm_development + WBls:0000436 + 325 min post first-cleavage Ce - The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17764,20 +17791,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 326 min post first-cleavage - worm_development - WBls:0000437 - 326 min post first-cleavage Ce + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 326 min post first-cleavage + worm_development + WBls:0000437 + 326 min post first-cleavage Ce - The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17800,20 +17827,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 327 min post first-cleavage - worm_development - WBls:0000438 - 327 min post first-cleavage Ce + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 327 min post first-cleavage + worm_development + WBls:0000438 + 327 min post first-cleavage Ce - The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17836,20 +17863,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 328 min post first-cleavage - worm_development - WBls:0000439 - 328 min post first-cleavage Ce + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 328 min post first-cleavage + worm_development + WBls:0000439 + 328 min post first-cleavage Ce - The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17872,20 +17899,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 329 min post first-cleavage - worm_development - WBls:0000440 - 329 min post first-cleavage Ce + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 329 min post first-cleavage + worm_development + WBls:0000440 + 329 min post first-cleavage Ce - The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17908,20 +17935,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 330 min post first-cleavage - worm_development - WBls:0000441 - 330 min post first-cleavage Ce + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 330 min post first-cleavage + worm_development + WBls:0000441 + 330 min post first-cleavage Ce - The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17944,20 +17971,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 331 min post first-cleavage - worm_development - WBls:0000442 - 331 min post first-cleavage Ce + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 331 min post first-cleavage + worm_development + WBls:0000442 + 331 min post first-cleavage Ce - The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -17980,20 +18007,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 332 min post first-cleavage - worm_development - WBls:0000443 - 332 min post first-cleavage Ce + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 332 min post first-cleavage + worm_development + WBls:0000443 + 332 min post first-cleavage Ce - The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18016,20 +18043,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 333 min post first-cleavage - worm_development - WBls:0000444 - 333 min post first-cleavage Ce + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 333 min post first-cleavage + worm_development + WBls:0000444 + 333 min post first-cleavage Ce - The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18052,20 +18079,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 334 min post first-cleavage - worm_development - WBls:0000445 - 334 min post first-cleavage Ce + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 334 min post first-cleavage + worm_development + WBls:0000445 + 334 min post first-cleavage Ce - The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18088,20 +18115,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 335 min post first-cleavage - worm_development - WBls:0000446 - 335 min post first-cleavage Ce + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 335 min post first-cleavage + worm_development + WBls:0000446 + 335 min post first-cleavage Ce - The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18124,20 +18151,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 336 min post first-cleavage - worm_development - WBls:0000447 - 336 min post first-cleavage Ce + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 336 min post first-cleavage + worm_development + WBls:0000447 + 336 min post first-cleavage Ce - The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18160,20 +18187,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 337 min post first-cleavage - worm_development - WBls:0000448 - 337 min post first-cleavage Ce + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 337 min post first-cleavage + worm_development + WBls:0000448 + 337 min post first-cleavage Ce - The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18196,20 +18223,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 338 min post first-cleavage - worm_development - WBls:0000449 - 338 min post first-cleavage Ce + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 338 min post first-cleavage + worm_development + WBls:0000449 + 338 min post first-cleavage Ce - The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18232,20 +18259,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 339 min post first-cleavage - worm_development - WBls:0000450 - 339 min post first-cleavage Ce + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 339 min post first-cleavage + worm_development + WBls:0000450 + 339 min post first-cleavage Ce - The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18268,20 +18295,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 340 min post first-cleavage - worm_development - WBls:0000451 - 340 min post first-cleavage Ce + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 340 min post first-cleavage + worm_development + WBls:0000451 + 340 min post first-cleavage Ce - The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18304,20 +18331,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 341 min post first-cleavage - worm_development - WBls:0000452 - 341 min post first-cleavage Ce + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 341 min post first-cleavage + worm_development + WBls:0000452 + 341 min post first-cleavage Ce - The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18340,20 +18367,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 342 min post first-cleavage - worm_development - WBls:0000453 - 342 min post first-cleavage Ce + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 342 min post first-cleavage + worm_development + WBls:0000453 + 342 min post first-cleavage Ce - The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18376,20 +18403,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 343 min post first-cleavage - worm_development - WBls:0000454 - 343 min post first-cleavage Ce + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 343 min post first-cleavage + worm_development + WBls:0000454 + 343 min post first-cleavage Ce - The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18412,20 +18439,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 344 min post first-cleavage - worm_development - WBls:0000455 - 344 min post first-cleavage Ce + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 344 min post first-cleavage + worm_development + WBls:0000455 + 344 min post first-cleavage Ce - The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18448,20 +18475,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 345 min post first-cleavage - worm_development - WBls:0000456 - 345 min post first-cleavage Ce + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 345 min post first-cleavage + worm_development + WBls:0000456 + 345 min post first-cleavage Ce - The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18484,20 +18511,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 346 min post first-cleavage - worm_development - WBls:0000457 - 346 min post first-cleavage Ce + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 346 min post first-cleavage + worm_development + WBls:0000457 + 346 min post first-cleavage Ce - The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18520,20 +18547,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 347 min post first-cleavage - worm_development - WBls:0000458 - 347 min post first-cleavage Ce + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 347 min post first-cleavage + worm_development + WBls:0000458 + 347 min post first-cleavage Ce - The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18556,20 +18583,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 348 min post first-cleavage - worm_development - WBls:0000459 - 348 min post first-cleavage Ce + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 348 min post first-cleavage + worm_development + WBls:0000459 + 348 min post first-cleavage Ce - The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18592,20 +18619,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 349 min post first-cleavage - worm_development - WBls:0000460 - 349 min post first-cleavage Ce + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 349 min post first-cleavage + worm_development + WBls:0000460 + 349 min post first-cleavage Ce - The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18628,20 +18655,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 350 min post first-cleavage - worm_development - WBls:0000461 - 350 min post first-cleavage Ce + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 350 min post first-cleavage + worm_development + WBls:0000461 + 350 min post first-cleavage Ce - The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18664,20 +18691,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 351 min post first-cleavage - worm_development - WBls:0000462 - 351 min post first-cleavage Ce + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 351 min post first-cleavage + worm_development + WBls:0000462 + 351 min post first-cleavage Ce - The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18700,20 +18727,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 352 min post first-cleavage - worm_development - WBls:0000463 - 352 min post first-cleavage Ce + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 352 min post first-cleavage + worm_development + WBls:0000463 + 352 min post first-cleavage Ce - The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18736,20 +18763,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 353 min post first-cleavage - worm_development - WBls:0000464 - 353 min post first-cleavage Ce + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 353 min post first-cleavage + worm_development + WBls:0000464 + 353 min post first-cleavage Ce - The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18772,20 +18799,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 354 min post first-cleavage - worm_development - WBls:0000465 - 354 min post first-cleavage Ce + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 354 min post first-cleavage + worm_development + WBls:0000465 + 354 min post first-cleavage Ce - The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18808,20 +18835,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 355 min post first-cleavage - worm_development - WBls:0000466 - 355 min post first-cleavage Ce + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 355 min post first-cleavage + worm_development + WBls:0000466 + 355 min post first-cleavage Ce - The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18844,20 +18871,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 356 min post first-cleavage - worm_development - WBls:0000467 - 356 min post first-cleavage Ce + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 356 min post first-cleavage + worm_development + WBls:0000467 + 356 min post first-cleavage Ce - The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18880,20 +18907,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 357 min post first-cleavage - worm_development - WBls:0000468 - 357 min post first-cleavage Ce + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 357 min post first-cleavage + worm_development + WBls:0000468 + 357 min post first-cleavage Ce - The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18916,20 +18943,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 358 min post first-cleavage - worm_development - WBls:0000469 - 358 min post first-cleavage Ce + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 358 min post first-cleavage + worm_development + WBls:0000469 + 358 min post first-cleavage Ce - The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18952,20 +18979,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 359 min post first-cleavage - worm_development - WBls:0000470 - 359 min post first-cleavage Ce + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 359 min post first-cleavage + worm_development + WBls:0000470 + 359 min post first-cleavage Ce - The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -18988,20 +19015,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 360 min post first-cleavage - worm_development - WBls:0000471 - 360 min post first-cleavage Ce + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 360 min post first-cleavage + worm_development + WBls:0000471 + 360 min post first-cleavage Ce - The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19024,20 +19051,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 361 min post first-cleavage - worm_development - WBls:0000472 - 361 min post first-cleavage Ce + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 361 min post first-cleavage + worm_development + WBls:0000472 + 361 min post first-cleavage Ce - The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19060,20 +19087,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 362 min post first-cleavage - worm_development - WBls:0000473 - 362 min post first-cleavage Ce + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 362 min post first-cleavage + worm_development + WBls:0000473 + 362 min post first-cleavage Ce - The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19096,20 +19123,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 363 min post first-cleavage - worm_development - WBls:0000474 - 363 min post first-cleavage Ce + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 363 min post first-cleavage + worm_development + WBls:0000474 + 363 min post first-cleavage Ce - The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19132,20 +19159,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 364 min post first-cleavage - worm_development - WBls:0000475 - 364 min post first-cleavage Ce + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 364 min post first-cleavage + worm_development + WBls:0000475 + 364 min post first-cleavage Ce - The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19168,20 +19195,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 365 min post first-cleavage - worm_development - WBls:0000476 - 365 min post first-cleavage Ce + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 365 min post first-cleavage + worm_development + WBls:0000476 + 365 min post first-cleavage Ce - The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19204,20 +19231,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 366 min post first-cleavage - worm_development - WBls:0000477 - 366 min post first-cleavage Ce + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 366 min post first-cleavage + worm_development + WBls:0000477 + 366 min post first-cleavage Ce - The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19240,20 +19267,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 367 min post first-cleavage - worm_development - WBls:0000478 - 367 min post first-cleavage Ce + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 367 min post first-cleavage + worm_development + WBls:0000478 + 367 min post first-cleavage Ce - The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19276,20 +19303,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 368 min post first-cleavage - worm_development - WBls:0000479 - 368 min post first-cleavage Ce + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 368 min post first-cleavage + worm_development + WBls:0000479 + 368 min post first-cleavage Ce - The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19312,20 +19339,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 369 min post first-cleavage - worm_development - WBls:0000480 - 369 min post first-cleavage Ce + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 369 min post first-cleavage + worm_development + WBls:0000480 + 369 min post first-cleavage Ce - The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19348,20 +19375,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 370 min post first-cleavage - worm_development - WBls:0000481 - 370 min post first-cleavage Ce + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 370 min post first-cleavage + worm_development + WBls:0000481 + 370 min post first-cleavage Ce - The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19384,20 +19411,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 371 min post first-cleavage - worm_development - WBls:0000482 - 371 min post first-cleavage Ce + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 371 min post first-cleavage + worm_development + WBls:0000482 + 371 min post first-cleavage Ce - The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19420,20 +19447,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 372 min post first-cleavage - worm_development - WBls:0000483 - 372 min post first-cleavage Ce + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 372 min post first-cleavage + worm_development + WBls:0000483 + 372 min post first-cleavage Ce - The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19456,20 +19483,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 373 min post first-cleavage - worm_development - WBls:0000484 - 373 min post first-cleavage Ce + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 373 min post first-cleavage + worm_development + WBls:0000484 + 373 min post first-cleavage Ce - The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19492,20 +19519,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 374 min post first-cleavage - worm_development - WBls:0000485 - 374 min post first-cleavage Ce + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 374 min post first-cleavage + worm_development + WBls:0000485 + 374 min post first-cleavage Ce - The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19528,20 +19555,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 375 min post first-cleavage - worm_development - WBls:0000486 - 375 min post first-cleavage Ce + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 375 min post first-cleavage + worm_development + WBls:0000486 + 375 min post first-cleavage Ce - The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19564,20 +19591,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 376 min post first-cleavage - worm_development - WBls:0000487 - 376 min post first-cleavage Ce + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 376 min post first-cleavage + worm_development + WBls:0000487 + 376 min post first-cleavage Ce - The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19600,20 +19627,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 377 min post first-cleavage - worm_development - WBls:0000488 - 377 min post first-cleavage Ce + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 377 min post first-cleavage + worm_development + WBls:0000488 + 377 min post first-cleavage Ce - The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19636,20 +19663,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 378 min post first-cleavage - worm_development - WBls:0000489 - 378 min post first-cleavage Ce + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 378 min post first-cleavage + worm_development + WBls:0000489 + 378 min post first-cleavage Ce - The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19672,20 +19699,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 379 min post first-cleavage - worm_development - WBls:0000490 - 379 min post first-cleavage Ce + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 379 min post first-cleavage + worm_development + WBls:0000490 + 379 min post first-cleavage Ce - The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19708,20 +19735,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 380 min post first-cleavage - worm_development - WBls:0000491 - 380 min post first-cleavage Ce + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 380 min post first-cleavage + worm_development + WBls:0000491 + 380 min post first-cleavage Ce - The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19744,20 +19771,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 381 min post first-cleavage - worm_development - WBls:0000492 - 381 min post first-cleavage Ce + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 381 min post first-cleavage + worm_development + WBls:0000492 + 381 min post first-cleavage Ce - The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19780,20 +19807,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 382 min post first-cleavage - worm_development - WBls:0000493 - 382 min post first-cleavage Ce + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 382 min post first-cleavage + worm_development + WBls:0000493 + 382 min post first-cleavage Ce - The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19816,20 +19843,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 383 min post first-cleavage - worm_development - WBls:0000494 - 383 min post first-cleavage Ce + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 383 min post first-cleavage + worm_development + WBls:0000494 + 383 min post first-cleavage Ce - The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19852,20 +19879,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 384 min post first-cleavage - worm_development - WBls:0000495 - 384 min post first-cleavage Ce + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 384 min post first-cleavage + worm_development + WBls:0000495 + 384 min post first-cleavage Ce - The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19888,20 +19915,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 385 min post first-cleavage - worm_development - WBls:0000496 - 385 min post first-cleavage Ce + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 385 min post first-cleavage + worm_development + WBls:0000496 + 385 min post first-cleavage Ce - The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19924,20 +19951,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 386 min post first-cleavage - worm_development - WBls:0000497 - 386 min post first-cleavage Ce + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 386 min post first-cleavage + worm_development + WBls:0000497 + 386 min post first-cleavage Ce - The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19960,20 +19987,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 387 min post first-cleavage - worm_development - WBls:0000498 - 387 min post first-cleavage Ce + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 387 min post first-cleavage + worm_development + WBls:0000498 + 387 min post first-cleavage Ce - The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -19996,20 +20023,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 388 min post first-cleavage - worm_development - WBls:0000499 - 388 min post first-cleavage Ce + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 388 min post first-cleavage + worm_development + WBls:0000499 + 388 min post first-cleavage Ce - The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20032,20 +20059,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 389 min post first-cleavage - worm_development - WBls:0000500 - 389 min post first-cleavage Ce + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 389 min post first-cleavage + worm_development + WBls:0000500 + 389 min post first-cleavage Ce - The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20068,20 +20095,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 390 min post first-cleavage - worm_development - WBls:0000501 - 390 min post first-cleavage Ce + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 390 min post first-cleavage + worm_development + WBls:0000501 + 390 min post first-cleavage Ce - The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20104,20 +20131,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 391 min post first-cleavage - worm_development - WBls:0000502 - 391 min post first-cleavage Ce + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 391 min post first-cleavage + worm_development + WBls:0000502 + 391 min post first-cleavage Ce - The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20140,20 +20167,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 392 min post first-cleavage - worm_development - WBls:0000503 - 392 min post first-cleavage Ce + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 392 min post first-cleavage + worm_development + WBls:0000503 + 392 min post first-cleavage Ce - The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20176,20 +20203,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 393 min post first-cleavage - worm_development - WBls:0000504 - 393 min post first-cleavage Ce + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 393 min post first-cleavage + worm_development + WBls:0000504 + 393 min post first-cleavage Ce - The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20212,20 +20239,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 394 min post first-cleavage - worm_development - WBls:0000505 - 394 min post first-cleavage Ce + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 394 min post first-cleavage + worm_development + WBls:0000505 + 394 min post first-cleavage Ce - The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20248,20 +20275,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 395 min post first-cleavage - worm_development - WBls:0000506 - 395 min post first-cleavage Ce + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 395 min post first-cleavage + worm_development + WBls:0000506 + 395 min post first-cleavage Ce - The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20284,20 +20311,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 396 min post first-cleavage - worm_development - WBls:0000507 - 396 min post first-cleavage Ce + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 396 min post first-cleavage + worm_development + WBls:0000507 + 396 min post first-cleavage Ce - The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20320,20 +20347,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 397 min post first-cleavage - worm_development - WBls:0000508 - 397 min post first-cleavage Ce + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 397 min post first-cleavage + worm_development + WBls:0000508 + 397 min post first-cleavage Ce - The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20356,20 +20383,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 398 min post first-cleavage - worm_development - WBls:0000509 - 398 min post first-cleavage Ce + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 398 min post first-cleavage + worm_development + WBls:0000509 + 398 min post first-cleavage Ce - The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20392,20 +20419,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 399 min post first-cleavage - worm_development - WBls:0000510 - 399 min post first-cleavage Ce + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 399 min post first-cleavage + worm_development + WBls:0000510 + 399 min post first-cleavage Ce - The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20428,20 +20455,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 400 min post first-cleavage - worm_development - WBls:0000511 - 400 min post first-cleavage Ce + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 400 min post first-cleavage + worm_development + WBls:0000511 + 400 min post first-cleavage Ce - The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20464,20 +20491,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 401 min post first-cleavage - worm_development - WBls:0000512 - 401 min post first-cleavage Ce + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 401 min post first-cleavage + worm_development + WBls:0000512 + 401 min post first-cleavage Ce - The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20500,20 +20527,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 402 min post first-cleavage - worm_development - WBls:0000513 - 402 min post first-cleavage Ce + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 402 min post first-cleavage + worm_development + WBls:0000513 + 402 min post first-cleavage Ce - The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20536,20 +20563,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 403 min post first-cleavage - worm_development - WBls:0000514 - 403 min post first-cleavage Ce + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 403 min post first-cleavage + worm_development + WBls:0000514 + 403 min post first-cleavage Ce - The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20572,20 +20599,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 404 min post first-cleavage - worm_development - WBls:0000515 - 404 min post first-cleavage Ce + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 404 min post first-cleavage + worm_development + WBls:0000515 + 404 min post first-cleavage Ce - The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20608,20 +20635,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 405 min post first-cleavage - worm_development - WBls:0000516 - 405 min post first-cleavage Ce + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 405 min post first-cleavage + worm_development + WBls:0000516 + 405 min post first-cleavage Ce - The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20644,20 +20671,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 406 min post first-cleavage - worm_development - WBls:0000517 - 406 min post first-cleavage Ce + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 406 min post first-cleavage + worm_development + WBls:0000517 + 406 min post first-cleavage Ce - The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20680,20 +20707,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 407 min post first-cleavage - worm_development - WBls:0000518 - 407 min post first-cleavage Ce + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 407 min post first-cleavage + worm_development + WBls:0000518 + 407 min post first-cleavage Ce - The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20716,20 +20743,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 408 min post first-cleavage - worm_development - WBls:0000519 - 408 min post first-cleavage Ce + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 408 min post first-cleavage + worm_development + WBls:0000519 + 408 min post first-cleavage Ce - The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20752,20 +20779,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 409 min post first-cleavage - worm_development - WBls:0000520 - 409 min post first-cleavage Ce + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 409 min post first-cleavage + worm_development + WBls:0000520 + 409 min post first-cleavage Ce - The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20788,20 +20815,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 410 min post first-cleavage - worm_development - WBls:0000521 - 410 min post first-cleavage Ce + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 410 min post first-cleavage + worm_development + WBls:0000521 + 410 min post first-cleavage Ce - The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20824,20 +20851,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 411 min post first-cleavage - worm_development - WBls:0000522 - 411 min post first-cleavage Ce + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 411 min post first-cleavage + worm_development + WBls:0000522 + 411 min post first-cleavage Ce - The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20860,20 +20887,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 412 min post first-cleavage - worm_development - WBls:0000523 - 412 min post first-cleavage Ce + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 412 min post first-cleavage + worm_development + WBls:0000523 + 412 min post first-cleavage Ce - The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20896,20 +20923,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 413 min post first-cleavage - worm_development - WBls:0000524 - 413 min post first-cleavage Ce + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 413 min post first-cleavage + worm_development + WBls:0000524 + 413 min post first-cleavage Ce - The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20932,20 +20959,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 414 min post first-cleavage - worm_development - WBls:0000525 - 414 min post first-cleavage Ce + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 414 min post first-cleavage + worm_development + WBls:0000525 + 414 min post first-cleavage Ce - The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -20968,20 +20995,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 415 min post first-cleavage - worm_development - WBls:0000526 - 415 min post first-cleavage Ce + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 415 min post first-cleavage + worm_development + WBls:0000526 + 415 min post first-cleavage Ce - The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21004,20 +21031,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 416 min post first-cleavage - worm_development - WBls:0000527 - 416 min post first-cleavage Ce + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 416 min post first-cleavage + worm_development + WBls:0000527 + 416 min post first-cleavage Ce - The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21040,20 +21067,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 417 min post first-cleavage - worm_development - WBls:0000528 - 417 min post first-cleavage Ce + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 417 min post first-cleavage + worm_development + WBls:0000528 + 417 min post first-cleavage Ce - The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21076,20 +21103,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 418 min post first-cleavage - worm_development - WBls:0000529 - 418 min post first-cleavage Ce + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 418 min post first-cleavage + worm_development + WBls:0000529 + 418 min post first-cleavage Ce - The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21112,20 +21139,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 419 min post first-cleavage - worm_development - WBls:0000530 - 419 min post first-cleavage Ce + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 419 min post first-cleavage + worm_development + WBls:0000530 + 419 min post first-cleavage Ce - The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21148,20 +21175,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 420 min post first-cleavage - worm_development - WBls:0000531 - 420 min post first-cleavage Ce + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 420 min post first-cleavage + worm_development + WBls:0000531 + 420 min post first-cleavage Ce - The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21184,20 +21211,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 421 min post first-cleavage - worm_development - WBls:0000532 - 421 min post first-cleavage Ce + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 421 min post first-cleavage + worm_development + WBls:0000532 + 421 min post first-cleavage Ce - The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21220,20 +21247,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 422 min post first-cleavage - worm_development - WBls:0000533 - 422 min post first-cleavage Ce + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 422 min post first-cleavage + worm_development + WBls:0000533 + 422 min post first-cleavage Ce - The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21256,20 +21283,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 423 min post first-cleavage - worm_development - WBls:0000534 - 423 min post first-cleavage Ce + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 423 min post first-cleavage + worm_development + WBls:0000534 + 423 min post first-cleavage Ce - The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21292,20 +21319,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 424 min post first-cleavage - worm_development - WBls:0000535 - 424 min post first-cleavage Ce + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 424 min post first-cleavage + worm_development + WBls:0000535 + 424 min post first-cleavage Ce - The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21328,20 +21355,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 425 min post first-cleavage - worm_development - WBls:0000536 - 425 min post first-cleavage Ce + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 425 min post first-cleavage + worm_development + WBls:0000536 + 425 min post first-cleavage Ce - The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21364,20 +21391,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 426 min post first-cleavage - worm_development - WBls:0000537 - 426 min post first-cleavage Ce + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 426 min post first-cleavage + worm_development + WBls:0000537 + 426 min post first-cleavage Ce - The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21400,20 +21427,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 427 min post first-cleavage - worm_development - WBls:0000538 - 427 min post first-cleavage Ce + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 427 min post first-cleavage + worm_development + WBls:0000538 + 427 min post first-cleavage Ce - The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21436,20 +21463,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 428 min post first-cleavage - worm_development - WBls:0000539 - 428 min post first-cleavage Ce + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 428 min post first-cleavage + worm_development + WBls:0000539 + 428 min post first-cleavage Ce - The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21472,20 +21499,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 429 min post first-cleavage - worm_development - WBls:0000540 - 429 min post first-cleavage Ce + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 429 min post first-cleavage + worm_development + WBls:0000540 + 429 min post first-cleavage Ce - The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21508,20 +21535,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 430 min post first-cleavage - worm_development - WBls:0000541 - 430 min post first-cleavage Ce + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 430 min post first-cleavage + worm_development + WBls:0000541 + 430 min post first-cleavage Ce - The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21544,20 +21571,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 431 min post first-cleavage - worm_development - WBls:0000542 - 431 min post first-cleavage Ce + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 431 min post first-cleavage + worm_development + WBls:0000542 + 431 min post first-cleavage Ce - The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21580,20 +21607,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 432 min post first-cleavage - worm_development - WBls:0000543 - 432 min post first-cleavage Ce + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 432 min post first-cleavage + worm_development + WBls:0000543 + 432 min post first-cleavage Ce - The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21616,20 +21643,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 433 min post first-cleavage - worm_development - WBls:0000544 - 433 min post first-cleavage Ce + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 433 min post first-cleavage + worm_development + WBls:0000544 + 433 min post first-cleavage Ce - The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21652,20 +21679,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 434 min post first-cleavage - worm_development - WBls:0000545 - 434 min post first-cleavage Ce + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 434 min post first-cleavage + worm_development + WBls:0000545 + 434 min post first-cleavage Ce - The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21688,20 +21715,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 435 min post first-cleavage - worm_development - WBls:0000546 - 435 min post first-cleavage Ce + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 435 min post first-cleavage + worm_development + WBls:0000546 + 435 min post first-cleavage Ce - The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21724,20 +21751,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 436 min post first-cleavage - worm_development - WBls:0000547 - 436 min post first-cleavage Ce + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 436 min post first-cleavage + worm_development + WBls:0000547 + 436 min post first-cleavage Ce - The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21760,20 +21787,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 437 min post first-cleavage - worm_development - WBls:0000548 - 437 min post first-cleavage Ce + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 437 min post first-cleavage + worm_development + WBls:0000548 + 437 min post first-cleavage Ce - The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21796,20 +21823,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 438 min post first-cleavage - worm_development - WBls:0000549 - 438 min post first-cleavage Ce + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 438 min post first-cleavage + worm_development + WBls:0000549 + 438 min post first-cleavage Ce - The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21832,20 +21859,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 439 min post first-cleavage - worm_development - WBls:0000550 - 439 min post first-cleavage Ce + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 439 min post first-cleavage + worm_development + WBls:0000550 + 439 min post first-cleavage Ce - The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21868,20 +21895,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 440 min post first-cleavage - worm_development - WBls:0000551 - 440 min post first-cleavage Ce + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 440 min post first-cleavage + worm_development + WBls:0000551 + 440 min post first-cleavage Ce - The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21904,20 +21931,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 441 min post first-cleavage - worm_development - WBls:0000552 - 441 min post first-cleavage Ce + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 441 min post first-cleavage + worm_development + WBls:0000552 + 441 min post first-cleavage Ce - The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21940,20 +21967,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 442 min post first-cleavage - worm_development - WBls:0000553 - 442 min post first-cleavage Ce + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 442 min post first-cleavage + worm_development + WBls:0000553 + 442 min post first-cleavage Ce - The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -21976,20 +22003,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 443 min post first-cleavage - worm_development - WBls:0000554 - 443 min post first-cleavage Ce + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 443 min post first-cleavage + worm_development + WBls:0000554 + 443 min post first-cleavage Ce - The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22012,20 +22039,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 444 min post first-cleavage - worm_development - WBls:0000555 - 444 min post first-cleavage Ce + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 444 min post first-cleavage + worm_development + WBls:0000555 + 444 min post first-cleavage Ce - The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22048,20 +22075,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 445 min post first-cleavage - worm_development - WBls:0000556 - 445 min post first-cleavage Ce + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 445 min post first-cleavage + worm_development + WBls:0000556 + 445 min post first-cleavage Ce - The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22084,20 +22111,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 446 min post first-cleavage - worm_development - WBls:0000557 - 446 min post first-cleavage Ce + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 446 min post first-cleavage + worm_development + WBls:0000557 + 446 min post first-cleavage Ce - The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22120,20 +22147,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 447 min post first-cleavage - worm_development - WBls:0000558 - 447 min post first-cleavage Ce + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 447 min post first-cleavage + worm_development + WBls:0000558 + 447 min post first-cleavage Ce - The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22156,20 +22183,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 448 min post first-cleavage - worm_development - WBls:0000559 - 448 min post first-cleavage Ce + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 448 min post first-cleavage + worm_development + WBls:0000559 + 448 min post first-cleavage Ce - The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22192,20 +22219,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 449 min post first-cleavage - worm_development - WBls:0000560 - 449 min post first-cleavage Ce + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 449 min post first-cleavage + worm_development + WBls:0000560 + 449 min post first-cleavage Ce - The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22228,20 +22255,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 450 min post first-cleavage - worm_development - WBls:0000561 - 450 min post first-cleavage Ce + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 450 min post first-cleavage + worm_development + WBls:0000561 + 450 min post first-cleavage Ce - The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22264,20 +22291,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 451 min post first-cleavage - worm_development - WBls:0000562 - 451 min post first-cleavage Ce + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 451 min post first-cleavage + worm_development + WBls:0000562 + 451 min post first-cleavage Ce - The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22300,20 +22327,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 452 min post first-cleavage - worm_development - WBls:0000563 - 452 min post first-cleavage Ce + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 452 min post first-cleavage + worm_development + WBls:0000563 + 452 min post first-cleavage Ce - The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22336,20 +22363,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 453 min post first-cleavage - worm_development - WBls:0000564 - 453 min post first-cleavage Ce + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 453 min post first-cleavage + worm_development + WBls:0000564 + 453 min post first-cleavage Ce - The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22372,20 +22399,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 454 min post first-cleavage - worm_development - WBls:0000565 - 454 min post first-cleavage Ce + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 454 min post first-cleavage + worm_development + WBls:0000565 + 454 min post first-cleavage Ce - The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22408,20 +22435,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 455 min post first-cleavage - worm_development - WBls:0000566 - 455 min post first-cleavage Ce + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 455 min post first-cleavage + worm_development + WBls:0000566 + 455 min post first-cleavage Ce - The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22444,20 +22471,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 456 min post first-cleavage - worm_development - WBls:0000567 - 456 min post first-cleavage Ce + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 456 min post first-cleavage + worm_development + WBls:0000567 + 456 min post first-cleavage Ce - The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22480,20 +22507,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 457 min post first-cleavage - worm_development - WBls:0000568 - 457 min post first-cleavage Ce + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 457 min post first-cleavage + worm_development + WBls:0000568 + 457 min post first-cleavage Ce - The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22516,20 +22543,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 458 min post first-cleavage - worm_development - WBls:0000569 - 458 min post first-cleavage Ce + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 458 min post first-cleavage + worm_development + WBls:0000569 + 458 min post first-cleavage Ce - The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22552,20 +22579,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 459 min post first-cleavage - worm_development - WBls:0000570 - 459 min post first-cleavage Ce + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 459 min post first-cleavage + worm_development + WBls:0000570 + 459 min post first-cleavage Ce - The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22588,20 +22615,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 460 min post first-cleavage - worm_development - WBls:0000571 - 460 min post first-cleavage Ce + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 460 min post first-cleavage + worm_development + WBls:0000571 + 460 min post first-cleavage Ce - The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22624,20 +22651,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 461 min post first-cleavage - worm_development - WBls:0000572 - 461 min post first-cleavage Ce + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 461 min post first-cleavage + worm_development + WBls:0000572 + 461 min post first-cleavage Ce - The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22660,20 +22687,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 462 min post first-cleavage - worm_development - WBls:0000573 - 462 min post first-cleavage Ce + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 462 min post first-cleavage + worm_development + WBls:0000573 + 462 min post first-cleavage Ce - The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22696,20 +22723,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 463 min post first-cleavage - worm_development - WBls:0000574 - 463 min post first-cleavage Ce + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 463 min post first-cleavage + worm_development + WBls:0000574 + 463 min post first-cleavage Ce - The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22732,20 +22759,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 464 min post first-cleavage - worm_development - WBls:0000575 - 464 min post first-cleavage Ce + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 464 min post first-cleavage + worm_development + WBls:0000575 + 464 min post first-cleavage Ce - The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22768,20 +22795,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 465 min post first-cleavage - worm_development - WBls:0000576 - 465 min post first-cleavage Ce + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 465 min post first-cleavage + worm_development + WBls:0000576 + 465 min post first-cleavage Ce - The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22804,20 +22831,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 466 min post first-cleavage - worm_development - WBls:0000577 - 466 min post first-cleavage Ce + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 466 min post first-cleavage + worm_development + WBls:0000577 + 466 min post first-cleavage Ce - The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22840,20 +22867,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 467 min post first-cleavage - worm_development - WBls:0000578 - 467 min post first-cleavage Ce + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 467 min post first-cleavage + worm_development + WBls:0000578 + 467 min post first-cleavage Ce - The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22876,20 +22903,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 468 min post first-cleavage - worm_development - WBls:0000579 - 468 min post first-cleavage Ce + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 468 min post first-cleavage + worm_development + WBls:0000579 + 468 min post first-cleavage Ce - The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22912,20 +22939,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 469 min post first-cleavage - worm_development - WBls:0000580 - 469 min post first-cleavage Ce + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 469 min post first-cleavage + worm_development + WBls:0000580 + 469 min post first-cleavage Ce - The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22948,20 +22975,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 470 min post first-cleavage - worm_development - WBls:0000581 - 470 min post first-cleavage Ce + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 470 min post first-cleavage + worm_development + WBls:0000581 + 470 min post first-cleavage Ce - The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -22984,20 +23011,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 471 min post first-cleavage - worm_development - WBls:0000582 - 471 min post first-cleavage Ce + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 471 min post first-cleavage + worm_development + WBls:0000582 + 471 min post first-cleavage Ce - The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23020,20 +23047,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 472 min post first-cleavage - worm_development - WBls:0000583 - 472 min post first-cleavage Ce + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 472 min post first-cleavage + worm_development + WBls:0000583 + 472 min post first-cleavage Ce - The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23056,20 +23083,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 473 min post first-cleavage - worm_development - WBls:0000584 - 473 min post first-cleavage Ce + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 473 min post first-cleavage + worm_development + WBls:0000584 + 473 min post first-cleavage Ce - The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23092,20 +23119,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 474 min post first-cleavage - worm_development - WBls:0000585 - 474 min post first-cleavage Ce + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 474 min post first-cleavage + worm_development + WBls:0000585 + 474 min post first-cleavage Ce - The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23128,20 +23155,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 475 min post first-cleavage - worm_development - WBls:0000586 - 475 min post first-cleavage Ce + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 475 min post first-cleavage + worm_development + WBls:0000586 + 475 min post first-cleavage Ce - The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23164,20 +23191,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 476 min post first-cleavage - worm_development - WBls:0000587 - 476 min post first-cleavage Ce + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 476 min post first-cleavage + worm_development + WBls:0000587 + 476 min post first-cleavage Ce - The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23200,20 +23227,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 477 min post first-cleavage - worm_development - WBls:0000588 - 477 min post first-cleavage Ce + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 477 min post first-cleavage + worm_development + WBls:0000588 + 477 min post first-cleavage Ce - The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23236,20 +23263,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 478 min post first-cleavage - worm_development - WBls:0000589 - 478 min post first-cleavage Ce + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 478 min post first-cleavage + worm_development + WBls:0000589 + 478 min post first-cleavage Ce - The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23272,20 +23299,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 479 min post first-cleavage - worm_development - WBls:0000590 - 479 min post first-cleavage Ce + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 479 min post first-cleavage + worm_development + WBls:0000590 + 479 min post first-cleavage Ce - The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23308,20 +23335,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 480 min post first-cleavage - worm_development - WBls:0000591 - 480 min post first-cleavage Ce + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 480 min post first-cleavage + worm_development + WBls:0000591 + 480 min post first-cleavage Ce - The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23344,20 +23371,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 481 min post first-cleavage - worm_development - WBls:0000592 - 481 min post first-cleavage Ce + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 481 min post first-cleavage + worm_development + WBls:0000592 + 481 min post first-cleavage Ce - The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23380,20 +23407,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 482 min post first-cleavage - worm_development - WBls:0000593 - 482 min post first-cleavage Ce + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 482 min post first-cleavage + worm_development + WBls:0000593 + 482 min post first-cleavage Ce - The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23416,20 +23443,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 483 min post first-cleavage - worm_development - WBls:0000594 - 483 min post first-cleavage Ce + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 483 min post first-cleavage + worm_development + WBls:0000594 + 483 min post first-cleavage Ce - The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23452,20 +23479,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 484 min post first-cleavage - worm_development - WBls:0000595 - 484 min post first-cleavage Ce + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 484 min post first-cleavage + worm_development + WBls:0000595 + 484 min post first-cleavage Ce - The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23488,20 +23515,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 485 min post first-cleavage - worm_development - WBls:0000596 - 485 min post first-cleavage Ce + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 485 min post first-cleavage + worm_development + WBls:0000596 + 485 min post first-cleavage Ce - The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23524,20 +23551,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 486 min post first-cleavage - worm_development - WBls:0000597 - 486 min post first-cleavage Ce + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 486 min post first-cleavage + worm_development + WBls:0000597 + 486 min post first-cleavage Ce - The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23560,20 +23587,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 487 min post first-cleavage - worm_development - WBls:0000598 - 487 min post first-cleavage Ce + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 487 min post first-cleavage + worm_development + WBls:0000598 + 487 min post first-cleavage Ce - The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23596,20 +23623,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 488 min post first-cleavage - worm_development - WBls:0000599 - 488 min post first-cleavage Ce + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 488 min post first-cleavage + worm_development + WBls:0000599 + 488 min post first-cleavage Ce - The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23632,20 +23659,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 489 min post first-cleavage - worm_development - WBls:0000600 - 489 min post first-cleavage Ce + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 489 min post first-cleavage + worm_development + WBls:0000600 + 489 min post first-cleavage Ce - The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23668,20 +23695,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 490 min post first-cleavage - worm_development - WBls:0000601 - 490 min post first-cleavage Ce + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 490 min post first-cleavage + worm_development + WBls:0000601 + 490 min post first-cleavage Ce - The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23704,20 +23731,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 491 min post first-cleavage - worm_development - WBls:0000602 - 491 min post first-cleavage Ce + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 491 min post first-cleavage + worm_development + WBls:0000602 + 491 min post first-cleavage Ce - The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23740,20 +23767,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 492 min post first-cleavage - worm_development - WBls:0000603 - 492 min post first-cleavage Ce + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 492 min post first-cleavage + worm_development + WBls:0000603 + 492 min post first-cleavage Ce - The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23776,20 +23803,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 493 min post first-cleavage - worm_development - WBls:0000604 - 493 min post first-cleavage Ce + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 493 min post first-cleavage + worm_development + WBls:0000604 + 493 min post first-cleavage Ce - The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23812,20 +23839,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 494 min post first-cleavage - worm_development - WBls:0000605 - 494 min post first-cleavage Ce + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 494 min post first-cleavage + worm_development + WBls:0000605 + 494 min post first-cleavage Ce - The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23848,20 +23875,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 495 min post first-cleavage - worm_development - WBls:0000606 - 495 min post first-cleavage Ce + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 495 min post first-cleavage + worm_development + WBls:0000606 + 495 min post first-cleavage Ce - The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23884,20 +23911,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 496 min post first-cleavage - worm_development - WBls:0000607 - 496 min post first-cleavage Ce + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 496 min post first-cleavage + worm_development + WBls:0000607 + 496 min post first-cleavage Ce - The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23920,20 +23947,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 497 min post first-cleavage - worm_development - WBls:0000608 - 497 min post first-cleavage Ce + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 497 min post first-cleavage + worm_development + WBls:0000608 + 497 min post first-cleavage Ce - The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23956,20 +23983,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 498 min post first-cleavage - worm_development - WBls:0000609 - 498 min post first-cleavage Ce + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 498 min post first-cleavage + worm_development + WBls:0000609 + 498 min post first-cleavage Ce - The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -23992,20 +24019,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 499 min post first-cleavage - worm_development - WBls:0000610 - 499 min post first-cleavage Ce + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 499 min post first-cleavage + worm_development + WBls:0000610 + 499 min post first-cleavage Ce - The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24028,20 +24055,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 500 min post first-cleavage - worm_development - WBls:0000611 - 500 min post first-cleavage Ce + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 500 min post first-cleavage + worm_development + WBls:0000611 + 500 min post first-cleavage Ce - The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24064,20 +24091,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 501 min post first-cleavage - worm_development - WBls:0000612 - 501 min post first-cleavage Ce + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 501 min post first-cleavage + worm_development + WBls:0000612 + 501 min post first-cleavage Ce - The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24100,20 +24127,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 502 min post first-cleavage - worm_development - WBls:0000613 - 502 min post first-cleavage Ce + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 502 min post first-cleavage + worm_development + WBls:0000613 + 502 min post first-cleavage Ce - The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24136,20 +24163,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 503 min post first-cleavage - worm_development - WBls:0000614 - 503 min post first-cleavage Ce + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 503 min post first-cleavage + worm_development + WBls:0000614 + 503 min post first-cleavage Ce - The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24172,20 +24199,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 504 min post first-cleavage - worm_development - WBls:0000615 - 504 min post first-cleavage Ce + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 504 min post first-cleavage + worm_development + WBls:0000615 + 504 min post first-cleavage Ce - The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24208,20 +24235,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 505 min post first-cleavage - worm_development - WBls:0000616 - 505 min post first-cleavage Ce + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 505 min post first-cleavage + worm_development + WBls:0000616 + 505 min post first-cleavage Ce - The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24244,20 +24271,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 506 min post first-cleavage - worm_development - WBls:0000617 - 506 min post first-cleavage Ce + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 506 min post first-cleavage + worm_development + WBls:0000617 + 506 min post first-cleavage Ce - The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24280,20 +24307,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 507 min post first-cleavage - worm_development - WBls:0000618 - 507 min post first-cleavage Ce + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 507 min post first-cleavage + worm_development + WBls:0000618 + 507 min post first-cleavage Ce - The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24316,20 +24343,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 508 min post first-cleavage - worm_development - WBls:0000619 - 508 min post first-cleavage Ce + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 508 min post first-cleavage + worm_development + WBls:0000619 + 508 min post first-cleavage Ce - The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24352,20 +24379,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 509 min post first-cleavage - worm_development - WBls:0000620 - 509 min post first-cleavage Ce + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 509 min post first-cleavage + worm_development + WBls:0000620 + 509 min post first-cleavage Ce - The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24388,20 +24415,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 510 min post first-cleavage - worm_development - WBls:0000621 - 510 min post first-cleavage Ce + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 510 min post first-cleavage + worm_development + WBls:0000621 + 510 min post first-cleavage Ce - The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24424,20 +24451,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 511 min post first-cleavage - worm_development - WBls:0000622 - 511 min post first-cleavage Ce + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 511 min post first-cleavage + worm_development + WBls:0000622 + 511 min post first-cleavage Ce - The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24460,20 +24487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 512 min post first-cleavage - worm_development - WBls:0000623 - 512 min post first-cleavage Ce + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 512 min post first-cleavage + worm_development + WBls:0000623 + 512 min post first-cleavage Ce - The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24496,20 +24523,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 513 min post first-cleavage - worm_development - WBls:0000624 - 513 min post first-cleavage Ce + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 513 min post first-cleavage + worm_development + WBls:0000624 + 513 min post first-cleavage Ce - The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24532,20 +24559,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 514 min post first-cleavage - worm_development - WBls:0000625 - 514 min post first-cleavage Ce + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 514 min post first-cleavage + worm_development + WBls:0000625 + 514 min post first-cleavage Ce - The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24568,20 +24595,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 515 min post first-cleavage - worm_development - WBls:0000626 - 515 min post first-cleavage Ce + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 515 min post first-cleavage + worm_development + WBls:0000626 + 515 min post first-cleavage Ce - The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24604,20 +24631,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 516 min post first-cleavage - worm_development - WBls:0000627 - 516 min post first-cleavage Ce + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 516 min post first-cleavage + worm_development + WBls:0000627 + 516 min post first-cleavage Ce - The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24640,20 +24667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 517 min post first-cleavage - worm_development - WBls:0000628 - 517 min post first-cleavage Ce + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 517 min post first-cleavage + worm_development + WBls:0000628 + 517 min post first-cleavage Ce - The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24676,20 +24703,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 518 min post first-cleavage - worm_development - WBls:0000629 - 518 min post first-cleavage Ce + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 518 min post first-cleavage + worm_development + WBls:0000629 + 518 min post first-cleavage Ce - The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24712,20 +24739,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 519 min post first-cleavage - worm_development - WBls:0000630 - 519 min post first-cleavage Ce + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 519 min post first-cleavage + worm_development + WBls:0000630 + 519 min post first-cleavage Ce - The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24748,20 +24775,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 520 min post first-cleavage - worm_development - WBls:0000631 - 520 min post first-cleavage Ce + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 520 min post first-cleavage + worm_development + WBls:0000631 + 520 min post first-cleavage Ce - The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24784,20 +24811,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 521 min post first-cleavage - worm_development - WBls:0000632 - 521 min post first-cleavage Ce + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 521 min post first-cleavage + worm_development + WBls:0000632 + 521 min post first-cleavage Ce - The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24820,20 +24847,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 522 min post first-cleavage - worm_development - WBls:0000633 - 522 min post first-cleavage Ce + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 522 min post first-cleavage + worm_development + WBls:0000633 + 522 min post first-cleavage Ce - The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24856,20 +24883,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 523 min post first-cleavage - worm_development - WBls:0000634 - 523 min post first-cleavage Ce + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 523 min post first-cleavage + worm_development + WBls:0000634 + 523 min post first-cleavage Ce - The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24892,20 +24919,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 524 min post first-cleavage - worm_development - WBls:0000635 - 524 min post first-cleavage Ce + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 524 min post first-cleavage + worm_development + WBls:0000635 + 524 min post first-cleavage Ce - The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24928,20 +24955,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 525 min post first-cleavage - worm_development - WBls:0000636 - 525 min post first-cleavage Ce + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 525 min post first-cleavage + worm_development + WBls:0000636 + 525 min post first-cleavage Ce - The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -24964,20 +24991,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 526 min post first-cleavage - worm_development - WBls:0000637 - 526 min post first-cleavage Ce + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 526 min post first-cleavage + worm_development + WBls:0000637 + 526 min post first-cleavage Ce - The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25000,20 +25027,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 527 min post first-cleavage - worm_development - WBls:0000638 - 527 min post first-cleavage Ce + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 527 min post first-cleavage + worm_development + WBls:0000638 + 527 min post first-cleavage Ce - The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25036,20 +25063,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 528 min post first-cleavage - worm_development - WBls:0000639 - 528 min post first-cleavage Ce + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 528 min post first-cleavage + worm_development + WBls:0000639 + 528 min post first-cleavage Ce - The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25072,20 +25099,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 529 min post first-cleavage - worm_development - WBls:0000640 - 529 min post first-cleavage Ce + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 529 min post first-cleavage + worm_development + WBls:0000640 + 529 min post first-cleavage Ce - The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25108,20 +25135,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 530 min post first-cleavage - worm_development - WBls:0000641 - 530 min post first-cleavage Ce + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 530 min post first-cleavage + worm_development + WBls:0000641 + 530 min post first-cleavage Ce - The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25144,20 +25171,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 531 min post first-cleavage - worm_development - WBls:0000642 - 531 min post first-cleavage Ce + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 531 min post first-cleavage + worm_development + WBls:0000642 + 531 min post first-cleavage Ce - The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25180,20 +25207,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 532 min post first-cleavage - worm_development - WBls:0000643 - 532 min post first-cleavage Ce + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 532 min post first-cleavage + worm_development + WBls:0000643 + 532 min post first-cleavage Ce - The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25216,20 +25243,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 533 min post first-cleavage - worm_development - WBls:0000644 - 533 min post first-cleavage Ce + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 533 min post first-cleavage + worm_development + WBls:0000644 + 533 min post first-cleavage Ce - The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25252,20 +25279,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 534 min post first-cleavage - worm_development - WBls:0000645 - 534 min post first-cleavage Ce + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 534 min post first-cleavage + worm_development + WBls:0000645 + 534 min post first-cleavage Ce - The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25288,20 +25315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 535 min post first-cleavage - worm_development - WBls:0000646 - 535 min post first-cleavage Ce + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 535 min post first-cleavage + worm_development + WBls:0000646 + 535 min post first-cleavage Ce - The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25324,20 +25351,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 536 min post first-cleavage - worm_development - WBls:0000647 - 536 min post first-cleavage Ce + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 536 min post first-cleavage + worm_development + WBls:0000647 + 536 min post first-cleavage Ce - The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25360,20 +25387,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 537 min post first-cleavage - worm_development - WBls:0000648 - 537 min post first-cleavage Ce + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 537 min post first-cleavage + worm_development + WBls:0000648 + 537 min post first-cleavage Ce - The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25396,20 +25423,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 538 min post first-cleavage - worm_development - WBls:0000649 - 538 min post first-cleavage Ce + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 538 min post first-cleavage + worm_development + WBls:0000649 + 538 min post first-cleavage Ce - The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25432,20 +25459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 539 min post first-cleavage - worm_development - WBls:0000650 - 539 min post first-cleavage Ce + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 539 min post first-cleavage + worm_development + WBls:0000650 + 539 min post first-cleavage Ce - The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25468,20 +25495,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 540 min post first-cleavage - worm_development - WBls:0000651 - 540 min post first-cleavage Ce + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 540 min post first-cleavage + worm_development + WBls:0000651 + 540 min post first-cleavage Ce - The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25504,20 +25531,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 541 min post first-cleavage - worm_development - WBls:0000652 - 541 min post first-cleavage Ce + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 541 min post first-cleavage + worm_development + WBls:0000652 + 541 min post first-cleavage Ce - The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25540,20 +25567,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 542 min post first-cleavage - worm_development - WBls:0000653 - 542 min post first-cleavage Ce + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 542 min post first-cleavage + worm_development + WBls:0000653 + 542 min post first-cleavage Ce - The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25576,20 +25603,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 543 min post first-cleavage - worm_development - WBls:0000654 - 543 min post first-cleavage Ce + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 543 min post first-cleavage + worm_development + WBls:0000654 + 543 min post first-cleavage Ce - The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25612,20 +25639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 544 min post first-cleavage - worm_development - WBls:0000655 - 544 min post first-cleavage Ce + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 544 min post first-cleavage + worm_development + WBls:0000655 + 544 min post first-cleavage Ce - The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25648,20 +25675,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 545 min post first-cleavage - worm_development - WBls:0000656 - 545 min post first-cleavage Ce + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 545 min post first-cleavage + worm_development + WBls:0000656 + 545 min post first-cleavage Ce - The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25684,20 +25711,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 546 min post first-cleavage - worm_development - WBls:0000657 - 546 min post first-cleavage Ce + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 546 min post first-cleavage + worm_development + WBls:0000657 + 546 min post first-cleavage Ce - The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25720,20 +25747,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 547 min post first-cleavage - worm_development - WBls:0000658 - 547 min post first-cleavage Ce + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 547 min post first-cleavage + worm_development + WBls:0000658 + 547 min post first-cleavage Ce - The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25756,20 +25783,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 548 min post first-cleavage - worm_development - WBls:0000659 - 548 min post first-cleavage Ce + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 548 min post first-cleavage + worm_development + WBls:0000659 + 548 min post first-cleavage Ce - The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25792,20 +25819,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 549 min post first-cleavage - worm_development - WBls:0000660 - 549 min post first-cleavage Ce + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 549 min post first-cleavage + worm_development + WBls:0000660 + 549 min post first-cleavage Ce - The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25828,20 +25855,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2014-04-25T09:29:36Z - 550 min post first-cleavage - worm_development - WBls:0000661 - 550 min post first-cleavage Ce + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2014-04-25T09:29:36Z + 550 min post first-cleavage + worm_development + WBls:0000661 + 550 min post first-cleavage Ce - The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 - WB:dr + The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 + WB:dr @@ -25867,24 +25894,24 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2014-11-10T09:29:36Z - WBls:0000078 - unsheathed microfilaria - Brugia mature microfilaria - mature microfilaria Bma - unsheathed microfilaria Bma - worm_development - WBls:0000663 - Brugia unsheathed microfilaria + 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. + danielaraciti + 2014-11-10T09:29:36Z + WBls:0000078 + unsheathed microfilaria + Brugia mature microfilaria + mature microfilaria Bma + unsheathed microfilaria Bma + worm_development + WBls:0000663 + Brugia unsheathed microfilaria - 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. - WB:dr - WB:mb + 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. + WB:dr + WB:mb @@ -25893,23 +25920,23 @@ For example, A and B may be gene products and binding of B by A positively regul - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:23:44Z - MF - microfilaria nematode - microfilariae - worm_development - WBls:0000664 - Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. - microfilaria + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:23:44Z + MF + microfilaria nematode + microfilariae + worm_development + WBls:0000664 + Anderson, R.C. (2000) Nematode Parasites of Vertebrates: Their Development and Transmission. Second Edition. CABI Publishing: Wallingford, England, pp. 472-475. + microfilaria - An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. - WB:dr - WB:jl + An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage. + WB:dr + WB:jl @@ -25925,22 +25952,22 @@ For example, A and B may be gene products and binding of B by A positively regul - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - danielaraciti - 2014-11-25T09:25:34Z - microfilaria - Brugia MF - microfilaria Bma - worm_development - WBls:0000665 - Brugia microfilaria + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + danielaraciti + 2014-11-25T09:25:34Z + microfilaria + Brugia MF + microfilaria Bma + worm_development + WBls:0000665 + Brugia microfilaria - An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. - WB:dr - WB:mb + An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage. + WB:dr + WB:mb @@ -25962,20 +25989,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - danielaraciti - 2014-11-25T09:50:35Z - unsheathed microfilaria nematode - unsheathed microfilariae - worm_development - WBls:0000666 - unsheathed microfilaria + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + danielaraciti + 2014-11-25T09:50:35Z + unsheathed microfilaria nematode + unsheathed microfilariae + worm_development + WBls:0000666 + unsheathed microfilaria - A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. - WB:WBPerson2987 + A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane. + WB:WBPerson2987 @@ -25984,21 +26011,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Microfilaria larvae found in nodules and ulcers. - danielaraciti - 2014-11-25T09:52:54Z - nodular microfilariae - nodular microfilariae nematode - worm_development - WBls:0000667 - nodular microfilaria + Microfilaria larvae found in nodules and ulcers. + danielaraciti + 2014-11-25T09:52:54Z + nodular microfilariae + nodular microfilariae nematode + worm_development + WBls:0000667 + nodular microfilaria - Microfilaria larvae found in nodules and ulcers. - PMID:1796232 - WB:WBPerson4055 + Microfilaria larvae found in nodules and ulcers. + PMID:1796232 + WB:WBPerson4055 @@ -26007,21 +26034,21 @@ For example, A and B may be gene products and binding of B by A positively regul - Microfilaria larvae found subcutaneously - danielaraciti - 2014-11-25T09:52:54Z - skin microfilariae - worm_development - WBls:0000668 - skin microfilaria + Microfilaria larvae found subcutaneously + danielaraciti + 2014-11-25T09:52:54Z + skin microfilariae + worm_development + WBls:0000668 + skin microfilaria - Microfilaria larvae found subcutaneously - PMID:20772951 - PMID:7797912 - WB:WBPerson4055 + Microfilaria larvae found subcutaneously + PMID:20772951 + PMID:7797912 + WB:WBPerson4055 @@ -26030,19 +26057,19 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - danielaraciti - 2014-11-26T11:49:22Z - unfertilized egg - worm_development - WBls:0000669 - unfertilized egg Ce + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + danielaraciti + 2014-11-26T11:49:22Z + unfertilized egg + worm_development + WBls:0000669 + unfertilized egg Ce - A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. - WB:WBPerson2987 + A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm. + WB:WBPerson2987 @@ -26064,17 +26091,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - 6-days post-L4 adult hermaphrodite - worm_development - WBls:0000670 - 6-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + 6-days post-L4 adult hermaphrodite + worm_development + WBls:0000670 + 6-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. - WB:dr + At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage. + WB:dr @@ -26096,17 +26123,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - 7-days post-L4 adult hermaphrodite - worm_development - WBls:0000671 - 7-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + 7-days post-L4 adult hermaphrodite + worm_development + WBls:0000671 + 7-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. - WB:dr + At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage. + WB:dr @@ -26128,17 +26155,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - 8-days post-L4 adult hermaphrodite - worm_development - WBls:0000672 - 8-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + 8-days post-L4 adult hermaphrodite + worm_development + WBls:0000672 + 8-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. - WB:dr + At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage. + WB:dr @@ -26160,17 +26187,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - 9-days post-L4 adult hermaphrodite - worm_development - WBls:0000673 - 9-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + 9-days post-L4 adult hermaphrodite + worm_development + WBls:0000673 + 9-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. - WB:dr + At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage. + WB:dr @@ -26192,17 +26219,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - 10-days post-L4 adult hermaphrodite - worm_development - WBls:0000674 - 10-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + 10-days post-L4 adult hermaphrodite + worm_development + WBls:0000674 + 10-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. - WB:dr + At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage. + WB:dr @@ -26224,17 +26251,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - 15-days post-L4 adult hermaphrodite - worm_development - WBls:0000675 - 15-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + 15-days post-L4 adult hermaphrodite + worm_development + WBls:0000675 + 15-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. - WB:dr + At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage. + WB:dr @@ -26256,17 +26283,17 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - 20-days post-L4 adult hermaphrodite - worm_development - WBls:0000676 - 20-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + 20-days post-L4 adult hermaphrodite + worm_development + WBls:0000676 + 20-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. - WB:dr + At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage. + WB:dr @@ -26276,19 +26303,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - jl16 - 2015-03-19T10:51:48Z - free-living stage - worm_development - WBls:0000677 - Strongyloides free-living stage + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + jl16 + 2015-03-19T10:51:48Z + free-living stage + worm_development + WBls:0000677 + Strongyloides free-living stage - The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism. + WB:jl @@ -26298,19 +26325,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - jl16 - 2015-03-19T10:52:41Z - parasitic stage - worm_development - WBls:0000678 - Strongyloides parasitic stage + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + jl16 + 2015-03-19T10:52:41Z + parasitic stage + worm_development + WBls:0000678 + Strongyloides parasitic stage - The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. - WB:jl + The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism. + WB:jl @@ -26319,20 +26346,20 @@ For example, A and B may be gene products and binding of B by A positively regul - Larval stage that is capable of infecting a host organism. - jl16 - 2015-03-19T11:21:35Z - infective larva - worm_development - WBls:0000679 - Host organism here refers to the main host organism rather than intermediate hosts. - nematode infective stage larva + Larval stage that is capable of infecting a host organism. + jl16 + 2015-03-19T11:21:35Z + infective larva + worm_development + WBls:0000679 + Host organism here refers to the main host organism rather than intermediate hosts. + nematode infective stage larva - Larval stage that is capable of infecting a host organism. - WB:jl + Larval stage that is capable of infecting a host organism. + WB:jl @@ -26343,21 +26370,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2015-03-19T11:27:15Z - infective L3 - Strongyloides iL3 - Strongyloides infective stage larva - worm_development - WBls:0000680 - Strongyloides infective L3 + 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. + jl16 + 2015-03-19T11:27:15Z + infective L3 + Strongyloides iL3 + Strongyloides infective stage larva + worm_development + WBls:0000680 + Strongyloides infective L3 - 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. - WB:jl + 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. + WB:jl @@ -26367,20 +26394,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - jl16 - 2015-03-19T11:36:03Z - parasitic female - Strongyloides L5 - worm_development - WBls:0000681 - Strongyloides parasitic female + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + jl16 + 2015-03-19T11:36:03Z + parasitic female + Strongyloides L5 + worm_development + WBls:0000681 + Strongyloides parasitic female - The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. - WB:jl + The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism. + WB:jl @@ -26390,20 +26417,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - jl16 - 2015-03-19T11:48:09Z - free-living adult - Strongyloides free-living L5 - worm_development - WBls:0000682 - Strongyloides free-living adult + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + jl16 + 2015-03-19T11:48:09Z + free-living adult + Strongyloides free-living L5 + worm_development + WBls:0000682 + Strongyloides free-living adult - The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. - WB:jl + The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism. + WB:jl @@ -26425,20 +26452,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:03:09Z - L4.0 larva - worm_development - WBls:0000683 - L4.0 larva Ce + 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. + danielaraciti + 2015-06-03T09:03:09Z + L4.0 larva + worm_development + WBls:0000683 + L4.0 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26460,20 +26487,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:06:19Z - L4.1 larva - worm_development - WBls:0000684 - L4.1 larva Ce + 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. + danielaraciti + 2015-06-03T09:06:19Z + L4.1 larva + worm_development + WBls:0000684 + L4.1 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26495,20 +26522,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:09:03Z - L4.2 larva - worm_development - WBls:0000685 - L4.2 larva Ce + 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. + danielaraciti + 2015-06-03T09:09:03Z + L4.2 larva + worm_development + WBls:0000685 + L4.2 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26530,20 +26557,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:10:09Z - L4.3 larva - worm_development - WBls:0000686 - L4.3 larva Ce + 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. + danielaraciti + 2015-06-03T09:10:09Z + L4.3 larva + worm_development + WBls:0000686 + L4.3 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26565,20 +26592,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:11:12Z - L4.4 larva - worm_development - WBls:0000687 - L4.4 larva Ce + 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. + danielaraciti + 2015-06-03T09:11:12Z + L4.4 larva + worm_development + WBls:0000687 + L4.4 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26600,20 +26627,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:13:09Z - L4.5 larva - worm_development - WBls:0000688 - L4.5 larva Ce + 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. + danielaraciti + 2015-06-03T09:13:09Z + L4.5 larva + worm_development + WBls:0000688 + L4.5 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26635,20 +26662,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:15:18Z - L4.6 larva - worm_development - WBls:0000689 - L4.6 larva Ce + 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. + danielaraciti + 2015-06-03T09:15:18Z + L4.6 larva + worm_development + WBls:0000689 + L4.6 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26670,20 +26697,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:16:07Z - L4.7 larva - worm_development - WBls:0000690 - L4.7 larva Ce + 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. + danielaraciti + 2015-06-03T09:16:07Z + L4.7 larva + worm_development + WBls:0000690 + L4.7 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26705,20 +26732,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:18:02Z - L4.8 larva - worm_development - WBls:0000691 - L4.8 larva Ce + 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. + danielaraciti + 2015-06-03T09:18:02Z + L4.8 larva + worm_development + WBls:0000691 + L4.8 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26740,20 +26767,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - danielaraciti - 2015-06-03T09:20:37Z - L4.9 larva - worm_development - WBls:0000692 - L4.9 larva Ce + 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. + danielaraciti + 2015-06-03T09:20:37Z + L4.9 larva + worm_development + WBls:0000692 + L4.9 larva Ce - 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:WBPaper00046933 - WB:dr + 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:WBPaper00046933 + WB:dr @@ -26776,19 +26803,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T09:27:59Z - 560 min post first-cleavage - worm_development - WBls:0000693 - 560 min post first-cleavage Ce + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T09:27:59Z + 560 min post first-cleavage + worm_development + WBls:0000693 + 560 min post first-cleavage Ce - The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26811,19 +26838,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T10:07:46Z - 570 min post first-cleavage - worm_development - WBls:0000694 - 570 min post first-cleavage Ce + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T10:07:46Z + 570 min post first-cleavage + worm_development + WBls:0000694 + 570 min post first-cleavage Ce - The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26846,19 +26873,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:08:29Z - 640 min post first-cleavage - worm_development - WBls:0000695 - 640 min post first-cleavage Ce + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:08:29Z + 640 min post first-cleavage + worm_development + WBls:0000695 + 640 min post first-cleavage Ce - The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26881,19 +26908,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:11:15Z - 650 min post first-cleavage - worm_development - WBls:0000696 - 650 min post first-cleavage Ce + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:11:15Z + 650 min post first-cleavage + worm_development + WBls:0000696 + 650 min post first-cleavage Ce - The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26916,19 +26943,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:13:05Z - 660 min post first-cleavage - worm_development - WBls:0000697 - 660 min post first-cleavage Ce + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:13:05Z + 660 min post first-cleavage + worm_development + WBls:0000697 + 660 min post first-cleavage Ce - The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26951,19 +26978,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:16:33Z - 720 min post first-cleavage - worm_development - WBls:0000698 - 720 min post first-cleavage Ce + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:16:33Z + 720 min post first-cleavage + worm_development + WBls:0000698 + 720 min post first-cleavage Ce - The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -26986,19 +27013,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:18:49Z - 770 min post first-cleavage - worm_development - WBls:0000699 - 770 min post first-cleavage Ce + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:18:49Z + 770 min post first-cleavage + worm_development + WBls:0000699 + 770 min post first-cleavage Ce - The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27021,19 +27048,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:23:34Z - 780 min post first-cleavage - worm_development - WBls:0000700 - 780 min post first-cleavage Ce + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:23:34Z + 780 min post first-cleavage + worm_development + WBls:0000700 + 780 min post first-cleavage Ce - The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27056,19 +27083,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:25:47Z - 820 min post first-cleavage - worm_development - WBls:0000701 - 820 min post first-cleavage Ce + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:25:47Z + 820 min post first-cleavage + worm_development + WBls:0000701 + 820 min post first-cleavage Ce - The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27091,19 +27118,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:28:41Z - 830 min post first-cleavage - worm_development - WBls:0000702 - 830 min post first-cleavage Ce + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:28:41Z + 830 min post first-cleavage + worm_development + WBls:0000702 + 830 min post first-cleavage Ce - The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27126,19 +27153,19 @@ For example, A and B may be gene products and binding of B by A positively regul - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - danielaraciti - 2015-10-06T11:30:33Z - 850 min post first-cleavage - worm_development - WBls:0000703 - 850 min post first-cleavage Ce + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + danielaraciti + 2015-10-06T11:30:33Z + 850 min post first-cleavage + worm_development + WBls:0000703 + 850 min post first-cleavage Ce - The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. - WB:WBPaper00000653 + The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree. + WB:WBPaper00000653 @@ -27147,20 +27174,20 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage in Platyhelminthes (flatworms). - jl16 - 2016-03-16T11:14:50Z - Platyhelminthes developmental stage - platyhelminth developmental stage - worm_development - WBls:0000704 - Platyhelminthes life stage + Any developmental stage in Platyhelminthes (flatworms). + jl16 + 2016-03-16T11:14:50Z + Platyhelminthes developmental stage + platyhelminth developmental stage + worm_development + WBls:0000704 + Platyhelminthes life stage - Any developmental stage in Platyhelminthes (flatworms). - WB:jl + Any developmental stage in Platyhelminthes (flatworms). + WB:jl @@ -27169,20 +27196,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - jl16 - 2016-03-16T11:17:04Z - egg - platyhelminth egg - worm_development - WBls:0000705 - Platyhelminthes egg + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + jl16 + 2016-03-16T11:17:04Z + egg + platyhelminth egg + worm_development + WBls:0000705 + Platyhelminthes egg - The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. - WB:jl + The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching. + WB:jl @@ -27191,18 +27218,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-16T11:35:26Z - worm_development - WBls:0000706 - miracidium + 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. + jl16 + 2016-03-16T11:35:26Z + worm_development + WBls:0000706 + miracidium - 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. - WB:jl + 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. + WB:jl @@ -27211,18 +27238,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-16T11:42:15Z - worm_development - WBls:0000707 - sporocyst + 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. + jl16 + 2016-03-16T11:42:15Z + worm_development + WBls:0000707 + sporocyst - 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. - WB:jl + 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. + WB:jl @@ -27231,20 +27258,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-16T11:44:51Z - cercariae - worm_development - WBls:0000708 - cercarium + 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. + jl16 + 2016-03-16T11:44:51Z + cercariae + worm_development + WBls:0000708 + cercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27260,19 +27287,19 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-08-16T07:46:43Z - somule - worm_development - WBls:0000709 - schistosomulum + 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. + jl16 + 2016-08-16T07:46:43Z + somule + worm_development + WBls:0000709 + schistosomulum - 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 + 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 @@ -27288,20 +27315,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - jl16 - 2016-08-16T07:51:21Z - adult - platyhelminth adult - worm_development - WBls:0000710 - Platyhelminthes adult + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + jl16 + 2016-08-16T07:51:21Z + adult + platyhelminth adult + worm_development + WBls:0000710 + Platyhelminthes adult - The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. - WB:jl + The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction. + WB:jl @@ -27310,20 +27337,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A developmental stage of a Digenean (fluke). - jl16 - 2016-03-17T12:11:31Z - fluke life stage - worm_development - WBls:0000711 - Digeneans include the Schistosomatidae (blood flukes). - Digenean life stage + A developmental stage of a Digenean (fluke). + jl16 + 2016-03-17T12:11:31Z + fluke life stage + worm_development + WBls:0000711 + Digeneans include the Schistosomatidae (blood flukes). + Digenean life stage - A developmental stage of a Digenean (fluke). - WB:jl + A developmental stage of a Digenean (fluke). + WB:jl @@ -27332,18 +27359,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage of a Cestode (tapeworm). - jl16 - 2016-03-17T12:18:32Z - worm_development - WBls:0000712 - Cestoda life stage + Any developmental stage of a Cestode (tapeworm). + jl16 + 2016-03-17T12:18:32Z + worm_development + WBls:0000712 + Cestoda life stage - Any developmental stage of a Cestode (tapeworm). - WB:jl + Any developmental stage of a Cestode (tapeworm). + WB:jl @@ -27352,19 +27379,19 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T13:42:45Z - worm_development - hexcanth - WBls:0000713 - oncosphere + 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. + jl16 + 2016-03-17T13:42:45Z + worm_development + hexcanth + WBls:0000713 + oncosphere - 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. - WB:jl + 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. + WB:jl @@ -27379,22 +27406,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T14:27:42Z - hydatid cyst - metacestode vesicle - worm_development - WBls:0000714 - 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. - hydatid cyst stage + 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. + jl16 + 2016-03-17T14:27:42Z + hydatid cyst + metacestode vesicle + worm_development + WBls:0000714 + 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. + hydatid cyst stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -27409,21 +27436,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T14:40:14Z - protoscolex - worm_development - WBls:0000715 - 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. - protoscolex stage + 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. + jl16 + 2016-03-17T14:40:14Z + protoscolex + worm_development + WBls:0000715 + 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. + protoscolex stage - 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. - PMID:12462989 - WB:jl + 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. + PMID:12462989 + WB:jl @@ -27432,20 +27459,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-17T15:02:35Z - metacestode stage - worm_development - WBls:0000716 - metacestode + 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. + jl16 + 2016-03-17T15:02:35Z + metacestode stage + worm_development + WBls:0000716 + metacestode - 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. - ISBN:070202788X - WB:jl + 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. + ISBN:070202788X + WB:jl @@ -27460,18 +27487,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-03-18T11:15:07Z - worm_development - WBls:0000717 - cysticercoid stage + 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. + jl16 + 2016-03-18T11:15:07Z + worm_development + WBls:0000717 + cysticercoid stage - 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 + 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 @@ -27480,21 +27507,21 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T12:02:59Z - NEJ - newly emerged juveniles - worm_development - WBls:0000718 - newly excysted juveniles + 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. + jl16 + 2016-04-27T12:02:59Z + NEJ + newly emerged juveniles + worm_development + WBls:0000718 + newly excysted juveniles - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27503,19 +27530,19 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T12:56:49Z - worm_development - WBls:0000719 - juvenile fluke + 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. + jl16 + 2016-04-27T12:56:49Z + worm_development + WBls:0000719 + juvenile fluke - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27524,20 +27551,20 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T13:01:06Z - metacercariae - worm_development - WBls:0000720 - metacercarium + 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. + jl16 + 2016-04-27T13:01:06Z + metacercariae + worm_development + WBls:0000720 + metacercarium - 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. - PMID:25887684 - WB:jl + 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. + PMID:25887684 + WB:jl @@ -27545,22 +27572,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T17:03:22Z - nematode adult intestinal phase - worm_development - WBls:0000721 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult intestinal stage + 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. + jl16 + 2016-04-27T17:03:22Z + nematode adult intestinal phase + worm_development + WBls:0000721 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult intestinal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -27568,22 +27595,22 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - jl16 - 2016-04-27T17:13:57Z - nematode adult lumenal phase - worm_development - WBls:0000722 - This term was made obsolete because this is an anotomical part and not a life-stage. - obsolete nematode adult lumenal stage + 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. + jl16 + 2016-04-27T17:13:57Z + nematode adult lumenal phase + worm_development + WBls:0000722 + This term was made obsolete because this is an anotomical part and not a life-stage. + obsolete nematode adult lumenal stage true - 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. - PMID:19079187 - WB:jl + 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. + PMID:19079187 + WB:jl @@ -27592,18 +27619,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Onchocerca embryonic life stage. - fr7 - 2017-06-09T10:22:55Z - worm_development - WBls:0000723 - Onchocerca embryonic life stage + Onchocerca embryonic life stage. + fr7 + 2017-06-09T10:22:55Z + worm_development + WBls:0000723 + Onchocerca embryonic life stage - Onchocerca embryonic life stage. - WB:fr + Onchocerca embryonic life stage. + WB:fr @@ -27612,20 +27639,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:54:14Z - OPL:0000017 - 3 hr somule - worm_development - WBls:0000724 - 3 hr schistosomulum + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:54:14Z + OPL:0000017 + 3 hr somule + worm_development + WBls:0000724 + 3 hr schistosomulum - A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -27640,20 +27667,20 @@ For example, A and B may be gene products and binding of B by A positively regul - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - jl16 - 2016-08-16T08:56:23Z - OPL:0000172 - 24 hr somule - worm_development - WBls:0000725 - 24 hr schistosomulum + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + jl16 + 2016-08-16T08:56:23Z + OPL:0000172 + 24 hr somule + worm_development + WBls:0000725 + 24 hr schistosomulum - A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. - WB:jl + A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host. + WB:jl @@ -27662,18 +27689,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Onchocerca post-embryonic life stage. - fr7 - 2017-06-09T10:23:56Z - worm_development - WBls:0000726 - Onchocerca post-embryonic life stage + Onchocerca post-embryonic life stage. + fr7 + 2017-06-09T10:23:56Z + worm_development + WBls:0000726 + Onchocerca post-embryonic life stage - Onchocerca post-embryonic life stage. - WB:fr + Onchocerca post-embryonic life stage. + WB:fr @@ -27689,18 +27716,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fr7 - 2017-06-09T10:24:33Z - worm_development - WBls:0000727 - Onchocerca microfilaria (mammalian stage) + 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. + fr7 + 2017-06-09T10:24:33Z + worm_development + WBls:0000727 + Onchocerca microfilaria (mammalian stage) - 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 + 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 @@ -27716,18 +27743,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fr7 - 2017-06-09T10:28:52Z - worm_development - WBls:0000728 - Onchocerca microfilaria (vector stage) + 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. + fr7 + 2017-06-09T10:28:52Z + worm_development + WBls:0000728 + Onchocerca microfilaria (vector stage) - 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 + 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 @@ -27736,18 +27763,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult female Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:28:29Z - worm_development - WBls:0000729 - Strongyloides free living adult female + Adult female Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:28:29Z + worm_development + WBls:0000729 + Strongyloides free living adult female - Adult female Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult female Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -27763,18 +27790,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L1 larvae that develop from the microfilariae in the arthropod vector. - fr7 - 2017-06-09T10:35:04Z - worm_development - WBls:0000730 - Onchocerca L1 larva + L1 larvae that develop from the microfilariae in the arthropod vector. + fr7 + 2017-06-09T10:35:04Z + worm_development + WBls:0000730 + Onchocerca L1 larva - L1 larvae that develop from the microfilariae in the arthropod vector. - WB:fr + L1 larvae that develop from the microfilariae in the arthropod vector. + WB:fr @@ -27790,18 +27817,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L2 larvae that develops from the L1 larvae in the arthropod vector. - fr7 - 2017-06-09T10:40:31Z - worm_development - WBls:0000731 - Onchocerca L2 larva + L2 larvae that develops from the L1 larvae in the arthropod vector. + fr7 + 2017-06-09T10:40:31Z + worm_development + WBls:0000731 + Onchocerca L2 larva - L2 larvae that develops from the L1 larvae in the arthropod vector. - WB:fr + L2 larvae that develops from the L1 larvae in the arthropod vector. + WB:fr @@ -27817,18 +27844,18 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - fr7 - 2017-06-09T10:45:40Z - worm_development - WBls:0000732 - Onchocerca L3 larva (vector stage) + 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. + fr7 + 2017-06-09T10:45:40Z + worm_development + WBls:0000732 + Onchocerca L3 larva (vector stage) - 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 + 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 @@ -27844,18 +27871,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - fr7 - 2017-06-09T10:48:52Z - worm_development - WBls:0000733 - Onchocerca L3 larva (mammalian stage) + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + fr7 + 2017-06-09T10:48:52Z + worm_development + WBls:0000733 + Onchocerca L3 larva (mammalian stage) - L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. - WB:fr + L3 larvae after introduction to the mammalian host through the bite wound of the insect vector. + WB:fr @@ -27864,18 +27891,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - fr7 - 2017-06-09T10:50:17Z - worm_development - WBls:0000734 - Onchocerca L3 larva in vitro cultured D1 + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + fr7 + 2017-06-09T10:50:17Z + worm_development + WBls:0000734 + Onchocerca L3 larva in vitro cultured D1 - L3 larvae isolated from the insect vector and cultured in vitro for 1 day. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 1 day. + WB:fr @@ -27890,18 +27917,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - fr7 - 2017-06-09T10:51:09Z - worm_development - WBls:0000735 - Onchocerca L3 larva in vitro cultured D2 + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + fr7 + 2017-06-09T10:51:09Z + worm_development + WBls:0000735 + Onchocerca L3 larva in vitro cultured D2 - L3 larvae isolated from the insect vector and cultured in vitro for 2 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 2 days. + WB:fr @@ -27916,18 +27943,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - fr7 - 2017-06-09T10:53:33Z - worm_development - WBls:0000736 - Onchocerca L3 larva in vitro cultured D3 + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + fr7 + 2017-06-09T10:53:33Z + worm_development + WBls:0000736 + Onchocerca L3 larva in vitro cultured D3 - L3 larvae isolated from the insect vector and cultured in vitro for 3 days. - WB:fr + L3 larvae isolated from the insect vector and cultured in vitro for 3 days. + WB:fr @@ -27943,18 +27970,18 @@ For example, A and B may be gene products and binding of B by A positively regul - L4 larvae that develop from L3 larvae in the mammalian host. - fr7 - 2017-06-09T10:59:07Z - worm_development - WBls:0000737 - Onchocerca L4 larva + L4 larvae that develop from L3 larvae in the mammalian host. + fr7 + 2017-06-09T10:59:07Z + worm_development + WBls:0000737 + Onchocerca L4 larva - L4 larvae that develop from L3 larvae in the mammalian host. - WB:fr + L4 larvae that develop from L3 larvae in the mammalian host. + WB:fr @@ -27963,18 +27990,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - fr7 - 2017-06-09T11:01:46Z - worm_development - WBls:0000738 - Onchocerca L4 larva in vitro cultured + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + fr7 + 2017-06-09T11:01:46Z + worm_development + WBls:0000738 + Onchocerca L4 larva in vitro cultured - Larvae isolated from the insect vector and cultured in vitro to the L4 stage. - WB:fr + Larvae isolated from the insect vector and cultured in vitro to the L4 stage. + WB:fr @@ -27990,18 +28017,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult male that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:02:24Z - worm_development - WBls:0000739 - Onchocerca adult male + Adult male that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:02:24Z + worm_development + WBls:0000739 + Onchocerca adult male - Adult male that has developed from L4 larvae in the mammalian host. - WB:fr + Adult male that has developed from L4 larvae in the mammalian host. + WB:fr @@ -28017,18 +28044,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult female that has developed from L4 larvae in the mammalian host. - fr7 - 2017-06-09T11:03:10Z - worm_development - WBls:0000740 - Onchocerca adult female + Adult female that has developed from L4 larvae in the mammalian host. + fr7 + 2017-06-09T11:03:10Z + worm_development + WBls:0000740 + Onchocerca adult female - Adult female that has developed from L4 larvae in the mammalian host. - WB:fr + Adult female that has developed from L4 larvae in the mammalian host. + WB:fr @@ -28037,18 +28064,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Any developmental stage of a nematode of the Onchocerca genus. - fr7 - 2017-06-09T10:18:45Z - worm_development - WBls:0000741 - Onchocerca life stage + Any developmental stage of a nematode of the Onchocerca genus. + fr7 + 2017-06-09T10:18:45Z + worm_development + WBls:0000741 + Onchocerca life stage - Any developmental stage of a nematode of the Onchocerca genus. - WB:fr + Any developmental stage of a nematode of the Onchocerca genus. + WB:fr @@ -28057,18 +28084,18 @@ For example, A and B may be gene products and binding of B by A positively regul - Adult male Strongyloides living entirely outside of a host or vector organism. - fr7 - 2017-07-28T14:34:19Z - worm_development - WBls:0000742 - Strongyloides free living adult male + Adult male Strongyloides living entirely outside of a host or vector organism. + fr7 + 2017-07-28T14:34:19Z + worm_development + WBls:0000742 + Strongyloides free living adult male - Adult male Strongyloides living entirely outside of a host or vector organism. - WB:fr + Adult male Strongyloides living entirely outside of a host or vector organism. + WB:fr @@ -28078,19 +28105,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - jl16 - 2015-11-25T11:38:04Z - post free-living L1 - worm_development - WBls:0000793 - Strongyloides post free-living L1 + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + jl16 + 2015-11-25T11:38:04Z + post free-living L1 + worm_development + WBls:0000793 + Strongyloides post free-living L1 - Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle. + WB:jl @@ -28100,19 +28127,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - jl16 - 2015-11-25T11:39:14Z - post parasitic L1 - worm_development - WBls:0000794 - Strongyloides post parasitic L1 + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + jl16 + 2015-11-25T11:39:14Z + post parasitic L1 + worm_development + WBls:0000794 + Strongyloides post parasitic L1 - Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. - WB:jl + Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle. + WB:jl @@ -28121,19 +28148,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - jl16 - 2015-11-25T11:55:54Z - post parasitic L3 - worm_development - WBls:0000795 - Strongyloides post parasitic L3 + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + jl16 + 2015-11-25T11:55:54Z + post parasitic L3 + worm_development + WBls:0000795 + Strongyloides post parasitic L3 - Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle. + WB:jl @@ -28143,19 +28170,19 @@ For example, A and B may be gene products and binding of B by A positively regul - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - jl16 - 2015-11-25T11:57:47Z - free-living L3 - worm_development - WBls:0000796 - Strongyloides post free-living L3 + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + jl16 + 2015-11-25T11:57:47Z + free-living L3 + worm_development + WBls:0000796 + Strongyloides post free-living L3 - Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. - WB:jl + Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle. + WB:jl @@ -28177,19 +28204,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - danielaraciti - 2016-10-19T10:13:23Z - 11-days post-L4 adult hermaphrodite - worm_development - WBls:0000797 - 11-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + danielaraciti + 2016-10-19T10:13:23Z + 11-days post-L4 adult hermaphrodite + worm_development + WBls:0000797 + 11-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. - WB:dr + At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage. + WB:dr @@ -28211,19 +28238,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - danielaraciti - 2016-10-19T10:13:47Z - 12-days post-L4 adult hermaphrodite - worm_development - WBls:0000798 - 12-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + danielaraciti + 2016-10-19T10:13:47Z + 12-days post-L4 adult hermaphrodite + worm_development + WBls:0000798 + 12-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. - WB:dr + At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage. + WB:dr @@ -28245,19 +28272,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - danielaraciti - 2016-10-19T10:14:11Z - 13-days post-L4 adult hermaphrodite - worm_development - WBls:0000799 - 13-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + danielaraciti + 2016-10-19T10:14:11Z + 13-days post-L4 adult hermaphrodite + worm_development + WBls:0000799 + 13-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. - WB:dr + At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage. + WB:dr @@ -28279,19 +28306,19 @@ For example, A and B may be gene products and binding of B by A positively regul - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - danielaraciti - 2016-10-19T10:14:40Z - 14-days post-L4 adult hermaphrodite - worm_development - WBls:0000800 - 14-days post-L4 adult hermaphrodite Ce + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + danielaraciti + 2016-10-19T10:14:40Z + 14-days post-L4 adult hermaphrodite + worm_development + WBls:0000800 + 14-days post-L4 adult hermaphrodite Ce - At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. - WB:dr + At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage. + WB:dr @@ -28313,20 +28340,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. - danielaraciti - 2017-11-14T10:14:40Z - worm_development - WBls:0000801 - newly hatched L1 larval stage Ce + The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells. + danielaraciti + 2017-11-14T10:14:40Z + worm_development + WBls:0000801 + newly hatched L1 larval stage Ce - 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 + 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 @@ -28342,20 +28369,20 @@ For example, A and B may be gene products and binding of B by A positively regul - The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. - danielaraciti - 2017-11-14T10:15:40Z - L1 diapause - worm_development - WBls:0000802 - L1 arrest Ce + The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest. + danielaraciti + 2017-11-14T10:15:40Z + L1 diapause + worm_development + WBls:0000802 + L1 arrest Ce - 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 + 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 @@ -28380,16 +28407,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during embryogenesis - worm_development - WBls:0000803 + A C. elegans life stage that occurs during embryogenesis + worm_development + WBls:0000803 C. elegans life stage occurring during embryogenesis - A C. elegans life stage that occurs during embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs during embryogenesis + WB:WBPerson2987 @@ -28414,16 +28441,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs after embryogenesis - worm_development - WBls:0000804 + A C. elegans life stage that occurs after embryogenesis + worm_development + WBls:0000804 C. elegans life stage occurring post embryogenesis - A C. elegans life stage that occurs after embryogenesis - WB:WBPerson2987 + A C. elegans life stage that occurs after embryogenesis + WB:WBPerson2987 @@ -28448,16 +28475,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the elongating embryo life stage - worm_development - WBls:0000805 + A C. elegans life stage that occurs during the elongating embryo life stage + worm_development + WBls:0000805 C. elegans life stage occurring during elongating embryo - A C. elegans life stage that occurs during the elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the elongating embryo life stage + WB:WBPerson2987 @@ -28482,16 +28509,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - worm_development - WBls:0000806 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + worm_development + WBls:0000806 C. elegans life stage occurring during 1.5-fold embryo - A C. elegans life stage that occurs during the 1.5-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 1.5-fold embryo life stage + WB:WBPerson2987 @@ -28516,16 +28543,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the 2-fold embryo life stage - worm_development - WBls:0000807 + A C. elegans life stage that occurs during the 2-fold embryo life stage + worm_development + WBls:0000807 C. elegans life stage occurring during 2-fold embryo - A C. elegans life stage that occurs during the 2-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 2-fold embryo life stage + WB:WBPerson2987 @@ -28550,16 +28577,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the 3-fold embryo life stage - worm_development - WBls:0000808 + A C. elegans life stage that occurs during the 3-fold embryo life stage + worm_development + WBls:0000808 C. elegans life stage occurring during 3-fold embryo - A C. elegans life stage that occurs during the 3-fold embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the 3-fold embryo life stage + WB:WBPerson2987 @@ -28584,16 +28611,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the bean embryo life stage - worm_development - WBls:0000809 + A C. elegans life stage that occurs during the bean embryo life stage + worm_development + WBls:0000809 C. elegans life stage occurring during bean embryo - A C. elegans life stage that occurs during the bean embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the bean embryo life stage + WB:WBPerson2987 @@ -28618,16 +28645,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the comma embryo life stage - worm_development - WBls:0000810 + A C. elegans life stage that occurs during the comma embryo life stage + worm_development + WBls:0000810 C. elegans life stage occurring during comma embryo - A C. elegans life stage that occurs during the comma embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the comma embryo life stage + WB:WBPerson2987 @@ -28652,16 +28679,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the fully-elongating embryo life stage - worm_development - WBls:0000811 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + worm_development + WBls:0000811 C. elegans life stage occurring during fully-elongated embryo - A C. elegans life stage that occurs during the fully-elongating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the fully-elongating embryo life stage + WB:WBPerson2987 @@ -28686,16 +28713,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the proliferating embryo life stage - worm_development - WBls:0000812 + A C. elegans life stage that occurs during the proliferating embryo life stage + worm_development + WBls:0000812 C. elegans life stage occurring during proliferating embryo - A C. elegans life stage that occurs during the proliferating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the proliferating embryo life stage + WB:WBPerson2987 @@ -28720,16 +28747,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the blastula embryo life stage - worm_development - WBls:0000813 + A C. elegans life stage that occurs during the blastula embryo life stage + worm_development + WBls:0000813 C. elegans life stage occurring during blastula embryo - A C. elegans life stage that occurs during the blastula embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the blastula embryo life stage + WB:WBPerson2987 @@ -28754,16 +28781,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the gastrulating embryo life stage - worm_development - WBls:0000814 + A C. elegans life stage that occurs during the gastrulating embryo life stage + worm_development + WBls:0000814 C. elegans life stage occurring during gastrulation - A C. elegans life stage that occurs during the gastrulating embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the gastrulating embryo life stage + WB:WBPerson2987 @@ -28788,16 +28815,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the enclosing embryo life stage - worm_development - WBls:0000815 + A C. elegans life stage that occurs during the enclosing embryo life stage + worm_development + WBls:0000815 C. elegans life stage occurring during enclosing embryo - A C. elegans life stage that occurs during the enclosing embryo life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the enclosing embryo life stage + WB:WBPerson2987 @@ -28822,16 +28849,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the adult life stage - worm_development - WBls:0000816 + A C. elegans life stage that occurs during the adult life stage + worm_development + WBls:0000816 C. elegans life stage occurring during adulthood - A C. elegans life stage that occurs during the adult life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the adult life stage + WB:WBPerson2987 @@ -28856,16 +28883,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the larval life stage - worm_development - WBls:0000817 + A C. elegans life stage that occurs during the larval life stage + worm_development + WBls:0000817 C. elegans life stage occurring during larval stage - A C. elegans life stage that occurs during the larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the larval life stage + WB:WBPerson2987 @@ -28890,16 +28917,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L1 larval life stage - worm_development - WBls:0000818 + A C. elegans life stage that occurs during the L1 larval life stage + worm_development + WBls:0000818 C. elegans life stage occurring during L1 larval stage - A C. elegans life stage that occurs during the L1 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L1 larval life stage + WB:WBPerson2987 @@ -28924,16 +28951,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L2 larval life stage - worm_development - WBls:0000819 + A C. elegans life stage that occurs during the L2 larval life stage + worm_development + WBls:0000819 C. elegans life stage occurring during L2 larval stage - A C. elegans life stage that occurs during the L2 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L2 larval life stage + WB:WBPerson2987 @@ -28958,16 +28985,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L3 larval life stage - worm_development - WBls:0000820 + A C. elegans life stage that occurs during the L3 larval life stage + worm_development + WBls:0000820 C. elegans life stage occurring during L3 larval stage - A C. elegans life stage that occurs during the L3 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L3 larval life stage + WB:WBPerson2987 @@ -28992,16 +29019,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage that occurs during the L4 larval life stage - worm_development - WBls:0000821 + A C. elegans life stage that occurs during the L4 larval life stage + worm_development + WBls:0000821 C. elegans life stage occurring during L4 larval stage - A C. elegans life stage that occurs during the L4 larval life stage - WB:WBPerson2987 + A C. elegans life stage that occurs during the L4 larval life stage + WB:WBPerson2987 @@ -29010,17 +29037,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - worm_development - WBls:0000822 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + worm_development + WBls:0000822 C. elegans life stage by minutes post first cleavage - A C. elegans life stage classified by the number of minutes post first embryonic cleavage. - WB:WBPaper00000653 - WB:WBPerson2987 + A C. elegans life stage classified by the number of minutes post first embryonic cleavage. + WB:WBPaper00000653 + WB:WBPerson2987 @@ -29029,16 +29056,16 @@ For example, A and B may be gene products and binding of B by A positively regul - C. elegans life stage classified by the number of cells in the organism. - worm_development - WBls:0000823 + C. elegans life stage classified by the number of cells in the organism. + worm_development + WBls:0000823 C. elegans life stage by number of cells - C. elegans life stage classified by the number of cells in the organism. - WB:WBPerson2987 + C. elegans life stage classified by the number of cells in the organism. + WB:WBPerson2987 @@ -29047,16 +29074,16 @@ For example, A and B may be gene products and binding of B by A positively regul - C. elegans life stage that occurs during a larval molt - worm_development - WBls:0000824 + C. elegans life stage that occurs during a larval molt + worm_development + WBls:0000824 C. elegans life stage occurring during larval molt - C. elegans life stage that occurs during a larval molt - WB:WBPerson2987 + C. elegans life stage that occurs during a larval molt + WB:WBPerson2987 @@ -29065,16 +29092,16 @@ For example, A and B may be gene products and binding of B by A positively regul - A life stage of the nematode Caenorhabditis elegans - worm_development - WBls:0000825 + A life stage of the nematode Caenorhabditis elegans + worm_development + WBls:0000825 C. elegans life stage - A life stage of the nematode Caenorhabditis elegans - WB:WBPerson2987 + A life stage of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -29082,17 +29109,17 @@ For example, A and B may be gene products and binding of B by A positively regul - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - worm_development - WBls:0000826 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + worm_development + WBls:0000826 obsolete set of worm life stages true - OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans - WB:WBPerson2987 + OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans + WB:WBPerson2987 @@ -29108,17 +29135,17 @@ For example, A and B may be gene products and binding of B by A positively regul - 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. - worm_development - WBls:0000827 + 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. + worm_development + WBls:0000827 post dauer stage Ce - 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 + 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 @@ -29134,25 +29161,25 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PDL4 - worm_development - WBls:0000828 - "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)." + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PDL4 + worm_development + WBls:0000828 + "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)." post dauer L4 stage Ce - A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 - "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)." - PMID:27417559 + "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)." + PMID:27417559 @@ -29162,17 +29189,17 @@ For example, A and B may be gene products and binding of B by A positively regul - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - worm_development - WBls:0000829 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + worm_development + WBls:0000829 post dauer adult stage Ce - A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. - PMID:27417559 - WB:WBPerson2987 + A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause. + PMID:27417559 + WB:WBPerson2987 @@ -29235,10 +29262,10 @@ For example, A and B may be gene products and binding of B by A positively regul - + - + @@ -29375,10 +29402,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29386,9 +29412,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29418,10 +29445,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29429,9 +29455,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29461,10 +29488,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29472,9 +29498,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29504,10 +29531,9 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + + + @@ -29515,9 +29541,10 @@ For example, A and B may be gene products and binding of B by A positively regul - - - + + + + @@ -29542,8 +29569,8 @@ For example, A and B may be gene products and binding of B by A positively regul true - 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 - infer input from direct reg + 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 + infer input from direct reg @@ -29672,8 +29699,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase true - 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' - involved in BP + 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' + involved in BP @@ -30578,5 +30605,5 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - +